OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library test.package.map.provider; | 5 library analyzer.test.source.package_map_provider_test; |
6 | 6 |
7 import 'package:analyzer/file_system/file_system.dart'; | 7 import 'package:analyzer/file_system/file_system.dart'; |
8 import 'package:analyzer/file_system/memory_file_system.dart'; | 8 import 'package:analyzer/file_system/memory_file_system.dart'; |
9 import 'package:analyzer/source/package_map_provider.dart'; | 9 import 'package:analyzer/source/package_map_provider.dart'; |
10 import 'package:analyzer/source/pub_package_map_provider.dart'; | 10 import 'package:analyzer/source/pub_package_map_provider.dart'; |
11 import 'package:analyzer/src/generated/sdk.dart'; | 11 import 'package:analyzer/src/generated/sdk.dart'; |
12 import 'package:analyzer/src/generated/sdk_io.dart'; | 12 import 'package:analyzer/src/generated/sdk_io.dart'; |
13 import 'package:unittest/unittest.dart'; | 13 import 'package:unittest/unittest.dart'; |
14 | 14 |
15 import '../reflective_tests.dart'; | 15 import '../reflective_tests.dart'; |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 resourceProvider.newFolder(projectPath); | 130 resourceProvider.newFolder(projectPath); |
131 resourceProvider.newFile(dependencyPath, 'contents'); | 131 resourceProvider.newFile(dependencyPath, 'contents'); |
132 Set<String> dependencies = parsePackageMap({ | 132 Set<String> dependencies = parsePackageMap({ |
133 'packages': {}, | 133 'packages': {}, |
134 'input_files': [relativeDependencyPath] | 134 'input_files': [relativeDependencyPath] |
135 }).dependencies; | 135 }).dependencies; |
136 expect(dependencies, hasLength(1)); | 136 expect(dependencies, hasLength(1)); |
137 expect(dependencies, contains(dependencyPath)); | 137 expect(dependencies, contains(dependencyPath)); |
138 } | 138 } |
139 } | 139 } |
OLD | NEW |