OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Test library uri for a library read as a package . | 5 // Test library uri for a library read as a package . |
6 | 6 |
7 library MirrorsTest; | 7 library MirrorsTest; |
8 | 8 |
9 import 'dart:mirrors'; | 9 import 'dart:mirrors'; |
10 import 'package:args/args.dart'; | 10 import 'package:args/args.dart'; |
11 import '../../../pkg/unittest/lib/unittest.dart'; | 11 import 'package:unittest/unittest.dart'; |
12 | 12 |
13 testLibraryUri(var value, Uri expectedUri) { | 13 testLibraryUri(var value, Uri expectedUri) { |
14 var valueMirror = reflect(value); | 14 var valueMirror = reflect(value); |
15 ClassMirror valueClass = valueMirror.type; | 15 ClassMirror valueClass = valueMirror.type; |
16 LibraryMirror valueLibrary = valueClass.owner; | 16 LibraryMirror valueLibrary = valueClass.owner; |
17 expect(valueLibrary.uri, equals(expectedUri)); | 17 expect(valueLibrary.uri, equals(expectedUri)); |
18 } | 18 } |
19 | 19 |
20 main() { | 20 main() { |
21 var mirrors = currentMirrorSystem(); | 21 var mirrors = currentMirrorSystem(); |
22 test("Test package library uri", () { | 22 test("Test package library uri", () { |
23 testLibraryUri(new ArgParser(), Uri.parse('package:args/args.dart')); | 23 testLibraryUri(new ArgParser(), Uri.parse('package:args/args.dart')); |
24 }); | 24 }); |
25 } | 25 } |
OLD | NEW |