| 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 'dart:uri'; | |
| 11 import 'package:args/args.dart'; | 10 import 'package:args/args.dart'; |
| 12 import '../../../pkg/unittest/lib/unittest.dart'; | 11 import '../../../pkg/unittest/lib/unittest.dart'; |
| 13 | 12 |
| 14 testLibraryUri(var value, Uri expectedUri) { | 13 testLibraryUri(var value, Uri expectedUri) { |
| 15 var valueMirror = reflect(value); | 14 var valueMirror = reflect(value); |
| 16 ClassMirror valueClass = valueMirror.type; | 15 ClassMirror valueClass = valueMirror.type; |
| 17 LibraryMirror valueLibrary = valueClass.owner; | 16 LibraryMirror valueLibrary = valueClass.owner; |
| 18 expect(valueLibrary.uri, equals(expectedUri)); | 17 expect(valueLibrary.uri, equals(expectedUri)); |
| 19 } | 18 } |
| 20 | 19 |
| 21 main() { | 20 main() { |
| 22 var mirrors = currentMirrorSystem(); | 21 var mirrors = currentMirrorSystem(); |
| 23 test("Test package library uri", () { | 22 test("Test package library uri", () { |
| 24 testLibraryUri(new ArgParser(), Uri.parse('package:args/args.dart')); | 23 testLibraryUri(new ArgParser(), Uri.parse('package:args/args.dart')); |
| 25 }); | 24 }); |
| 26 } | 25 } |
| OLD | NEW |