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

Unified Diff: pkg/unittest/test/mirror_matchers_test.dart

Issue 90973002: Revert r30650: fails in dart2js minified mode. (Closed) Base URL: http://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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/unittest/lib/mirror_matchers.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/test/mirror_matchers_test.dart
===================================================================
--- pkg/unittest/test/mirror_matchers_test.dart (revision 30697)
+++ pkg/unittest/test/mirror_matchers_test.dart (working copy)
@@ -7,13 +7,6 @@
import 'test_utils.dart';
-class C {
- var instanceField = 1;
- get instanceGetter => 2;
- static var staticField = 3;
- static get staticGetter => 4;
-}
-
void main() {
initUtils();
@@ -28,18 +21,5 @@
'Expected: has property "length" which matches <2> '
'Actual: [3] '
'Which: has property "length" with value <1>');
- var c = new C();
- shouldPass(c, hasProperty('instanceField', 1));
- shouldPass(c, hasProperty('instanceGetter', 2));
- shouldFail(c, hasProperty('staticField'),
- 'Expected: has property "staticField" '
- 'Actual: <Instance of \'C\'> '
- 'Which: has a member named "staticField",'
- ' but it is not an instance property');
- shouldFail(c, hasProperty('staticGetter'),
- 'Expected: has property "staticGetter" '
- 'Actual: <Instance of \'C\'> '
- 'Which: has a member named "staticGetter",'
- ' but it is not an instance property');
});
}
« no previous file with comments | « pkg/unittest/lib/mirror_matchers.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698