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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated latest tests. 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
5 // Test that native classes can use ordinary Dart classes as mixins. 7 // Test that native classes can use ordinary Dart classes as mixins.
6 8
7 class A native "*A" { 9 class A native "*A" {
8 foo() => "A-foo"; 10 foo() => "A-foo";
9 baz() => "A-baz"; 11 baz() => "A-baz";
10 } 12 }
11 13
12 class B extends A with M native "*B" { 14 class B extends A with M native "*B" {
13 bar() => baz(); 15 bar() => baz();
14 } 16 }
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 Expect.isTrue(b is M); 49 Expect.isTrue(b is M);
48 50
49 M m = new M(); 51 M m = new M();
50 Expect.equals("M-foo", m.foo()); 52 Expect.equals("M-foo", m.foo());
51 Expect.equals("M-bar", m.bar()); 53 Expect.equals("M-bar", m.bar());
52 Expect.throws(() => m.baz(), (error) => error is NoSuchMethodError); 54 Expect.throws(() => m.baz(), (error) => error is NoSuchMethodError);
53 Expect.isFalse(m is A); 55 Expect.isFalse(m is A);
54 Expect.isFalse(m is B); 56 Expect.isFalse(m is B);
55 Expect.isTrue(m is M); 57 Expect.isTrue(m is M);
56 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698