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

Side by Side Diff: tests/compiler/dart2js_native/native_mixin_field_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 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 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 import "package:expect/expect.dart";
6
7 // Test that native classes can use ordinary Dart classes with fields 5 // Test that native classes can use ordinary Dart classes with fields
8 // as mixins. 6 // as mixins.
9 7
10 class A native "*A" { 8 class A native "*A" {
11 var foo; 9 var foo;
12 } 10 }
13 11
14 class B extends A with M1, M2 native "*B" { 12 class B extends A with M1, M2 native "*B" {
15 var bar; 13 var bar;
16 } 14 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 Expect.throws(() => m1.bar, (e) => e is NoSuchMethodError); 51 Expect.throws(() => m1.bar, (e) => e is NoSuchMethodError);
54 Expect.isNull(m1.baz); 52 Expect.isNull(m1.baz);
55 Expect.throws(() => m1.buz, (e) => e is NoSuchMethodError); 53 Expect.throws(() => m1.buz, (e) => e is NoSuchMethodError);
56 54
57 M2 m2 = new M2(); 55 M2 m2 = new M2();
58 Expect.throws(() => m2.foo, (e) => e is NoSuchMethodError); 56 Expect.throws(() => m2.foo, (e) => e is NoSuchMethodError);
59 Expect.isNull(m2.bar); 57 Expect.isNull(m2.bar);
60 Expect.throws(() => m2.baz, (e) => e is NoSuchMethodError); 58 Expect.throws(() => m2.baz, (e) => e is NoSuchMethodError);
61 Expect.isNull(m2.buz); 59 Expect.isNull(m2.buz);
62 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698