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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 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 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 library test.library_exports_hidden; 5 library test.library_exports_hidden;
6 6
7 import 'dart:mirrors'; 7 import 'dart:mirrors';
8 import 'package:expect/expect.dart'; 8 import 'package:expect/expect.dart';
9 import 'stringify.dart'; 9 import 'stringify.dart';
10 10
11 import 'library_exports_hidden.dart'; 11 import 'library_exports_hidden.dart';
12 12
13 test(MirrorSystem mirrors) { 13 test(MirrorSystem mirrors) {
14 LibraryMirror hidden = mirrors.findLibrary(#library_exports_hidden); 14 LibraryMirror hidden = mirrors.findLibrary(#library_exports_hidden);
15 LibraryMirror a = mirrors.findLibrary(#library_imports_a); 15 LibraryMirror a = mirrors.findLibrary(#library_imports_a);
16 LibraryMirror b = mirrors.findLibrary(#library_imports_b); 16 LibraryMirror b = mirrors.findLibrary(#library_imports_b);
17 LibraryMirror core = mirrors.findLibrary(#dart.core); 17 LibraryMirror core = mirrors.findLibrary(#dart.core);
18 18
19 Expect.setEquals([a, b, core], 19 Expect.setEquals(
20 hidden.libraryDependencies.map((dep) => dep.targetLibrary)); 20 [a, b, core], hidden.libraryDependencies.map((dep) => dep.targetLibrary));
21 21
22 Expect.stringEquals( 22 Expect.stringEquals(
23 'import dart.core\n' 23 'import dart.core\n'
24 'export library_imports_a\n' 24 'export library_imports_a\n'
25 ' hide somethingFromA\n' 25 ' hide somethingFromA\n'
26 ' hide somethingFromBoth\n' 26 ' hide somethingFromBoth\n'
27 'export library_imports_b\n' 27 'export library_imports_b\n'
28 ' hide somethingFromB\n', 28 ' hide somethingFromB\n',
29 stringifyDependencies(hidden)); 29 stringifyDependencies(hidden));
30 } 30 }
31 31
32 main() { 32 main() {
33 test(currentMirrorSystem()); 33 test(currentMirrorSystem());
34 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698