Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: tests/lib/mirrors/library_imports_prefixed_test.dart

Issue 189843003: Reapply "Access to imports in the VM's runtime mirrors. Extend test coverage of the source mirrors." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_prefixed.dart';
12
13 test(MirrorSystem mirrors) {
14 LibraryMirror prefixed = mirrors.findLibrary(#library_imports_prefixed);
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 prefixed.libraryDependencies.map((dep) => dep.targetLibrary)) ;
21
22 Expect.stringEquals(
23 'import dart.core\n'
24 'import library_imports_a as prefixa\n'
25 'import library_imports_b as prefixb\n',
26 stringifyDependencies(prefixed));
27 }
28
29 main() {
30 test(currentMirrorSystem());
31 }
OLDNEW
« no previous file with comments | « tests/lib/mirrors/library_imports_prefixed_show_hide_test.dart ('k') | tests/lib/mirrors/library_imports_shown.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698