| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:io'; | 5 import 'dart:io'; |
| 6 | 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/protocol/protocol_generated.dart'; |
| 8 import 'package:test/test.dart'; | 8 import 'package:test/test.dart'; |
| 9 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 9 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 10 | 10 |
| 11 import '../integration_tests.dart'; | 11 import '../support/integration_tests.dart'; |
| 12 | 12 |
| 13 main() { | 13 main() { |
| 14 defineReflectiveSuite(() { | 14 defineReflectiveSuite(() { |
| 15 defineReflectiveTests(GetReachableSourcesTest); | 15 defineReflectiveTests(GetReachableSourcesTest); |
| 16 }); | 16 }); |
| 17 } | 17 } |
| 18 | 18 |
| 19 @reflectiveTest | 19 @reflectiveTest |
| 20 class GetReachableSourcesTest extends AbstractAnalysisServerIntegrationTest { | 20 class GetReachableSourcesTest extends AbstractAnalysisServerIntegrationTest { |
| 21 @failingTest | 21 @failingTest |
| (...skipping 18 matching lines...) Expand all Loading... |
| 40 List<String> keys = sources.keys.toList(); | 40 List<String> keys = sources.keys.toList(); |
| 41 String url = new File(pathname).uri.toString(); | 41 String url = new File(pathname).uri.toString(); |
| 42 | 42 |
| 43 expect(keys, contains('dart:core')); | 43 expect(keys, contains('dart:core')); |
| 44 expect(keys, contains('dart:collection')); | 44 expect(keys, contains('dart:collection')); |
| 45 expect(keys, contains('dart:math')); | 45 expect(keys, contains('dart:math')); |
| 46 expect(keys, contains(url)); | 46 expect(keys, contains(url)); |
| 47 expect(sources[url], contains('dart:core')); | 47 expect(sources[url], contains('dart:core')); |
| 48 } | 48 } |
| 49 } | 49 } |
| OLD | NEW |