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

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

Issue 44813004: Tests for instanceMembers, staticMembers, toplevelMembers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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/static_members_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013, 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.toplevel_members;
6
7 import 'dart:mirrors';
8 import 'package:expect/expect.dart';
9
10 import 'stringify.dart';
11 import 'declarations_model.dart' as declarations_model;
12
13 selectKeys(map, predicate) {
14 return map.keys.where((key) => predicate(map[key]));
15 }
16
17 main() {
18 LibraryMirror lm =
19 currentMirrorSystem().findLibrary(#test.declarations_model);
20
21 Expect.setEquals(
22 [#libraryVariable,
23 const Symbol('libraryVariable='),
24 #libraryGetter,
25 const Symbol('librarySetter='),
26 #libraryMethod,
27 #_libraryVariable,
28 const Symbol('_libraryVariable='),
29 #_libraryGetter,
30 const Symbol('_librarySetter='),
31 #_libraryMethod,
32 #Predicate,
33 #Superclass,
34 #Interface,
35 #Mixin,
36 #_PrivateClass,
37 #ConcreteClass],
38 selectKeys(lm.topLevelMembers, (dm) => true));
39
40 Expect.setEquals(
41 [#libraryVariable,
42 const Symbol('libraryVariable='),
43 #_libraryVariable,
44 const Symbol('_libraryVariable='),
45 #Predicate,
46 #Superclass,
47 #Interface,
48 #Mixin,
49 #_PrivateClass,
50 #ConcreteClass],
51 selectKeys(lm.topLevelMembers, (dm) => dm.isSynthetic));
52 }
OLDNEW
« no previous file with comments | « tests/lib/mirrors/static_members_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698