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

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

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 years, 6 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
« no previous file with comments | « tests/lib/mirrors/library_uri_io_test.dart ('k') | tests/lib/mirrors/mirrors_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « tests/lib/mirrors/library_uri_io_test.dart ('k') | tests/lib/mirrors/mirrors_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698