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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add deprecation comment for ExpectException and revert one test. Created 7 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 | 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
5 // Test that native classes can use ordinary Dart classes with fields 7 // Test that native classes can use ordinary Dart classes with fields
6 // as mixins. 8 // as mixins.
7 9
8 class A native "*A" { 10 class A native "*A" {
9 var foo; 11 var foo;
10 } 12 }
11 13
12 class B extends A with M1, M2 native "*B" { 14 class B extends A with M1, M2 native "*B" {
13 var bar; 15 var bar;
14 } 16 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 Expect.throws(() => m1.bar, (e) => e is NoSuchMethodError); 53 Expect.throws(() => m1.bar, (e) => e is NoSuchMethodError);
52 Expect.isNull(m1.baz); 54 Expect.isNull(m1.baz);
53 Expect.throws(() => m1.buz, (e) => e is NoSuchMethodError); 55 Expect.throws(() => m1.buz, (e) => e is NoSuchMethodError);
54 56
55 M2 m2 = new M2(); 57 M2 m2 = new M2();
56 Expect.throws(() => m2.foo, (e) => e is NoSuchMethodError); 58 Expect.throws(() => m2.foo, (e) => e is NoSuchMethodError);
57 Expect.isNull(m2.bar); 59 Expect.isNull(m2.bar);
58 Expect.throws(() => m2.baz, (e) => e is NoSuchMethodError); 60 Expect.throws(() => m2.baz, (e) => e is NoSuchMethodError);
59 Expect.isNull(m2.buz); 61 Expect.isNull(m2.buz);
60 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698