OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library test.library_imports; | |
6 | |
7 import 'dart:mirrors'; | |
8 import 'package:expect/expect.dart'; | |
9 import 'stringify.dart'; | |
10 | |
11 import 'library_imports_shown.dart'; | |
12 | |
13 test(MirrorSystem mirrors) { | |
14 LibraryMirror shown = mirrors.findLibrary(#library_imports_shown); | |
15 LibraryMirror a = mirrors.findLibrary(#library_imports_a); | |
16 LibraryMirror b = mirrors.findLibrary(#library_imports_b); | |
17 LibraryMirror core = mirrors.findLibrary(#dart.core); | |
18 | |
19 Expect.setEquals([a, b, core], | |
20 shown.libraryDependencies.map((dep) => dep.targetLibrary)); | |
21 | |
22 Expect.stringEquals( | |
23 'import dart.core\n' | |
24 'import library_imports_a\n' | |
25 ' show somethingFromA\n' | |
26 ' show somethingFromBoth\n' | |
27 'import library_imports_b\n' | |
28 ' show somethingFromB\n', | |
29 stringifyDependencies(shown)); | |
30 } | |
31 | |
32 main() { | |
33 test(currentMirrorSystem()); | |
34 } | |
OLD | NEW |