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

Side by Side Diff: tests/language/field_increment_bailout_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 // dart2js regression test for issue 8781. 5 // dart2js regression test for issue 8781.
6 6
7 import "package:expect/expect.dart";
8
7 class N { 9 class N {
8 var outgoing; 10 var outgoing;
9 var incoming; 11 var incoming;
10 N(this.outgoing, this.incoming); 12 N(this.outgoing, this.incoming);
11 } 13 }
12 14
13 class A { 15 class A {
14 int offset = 0; 16 int offset = 0;
15 var list; 17 var list;
16 var node; 18 var node;
(...skipping 23 matching lines...) Expand all
40 } 42 }
41 43
42 main () { 44 main () {
43 var o = new A(new N(new L([1]), new L([2]))); 45 var o = new A(new N(new L([1]), new L([2])));
44 46
45 for (var i = 1; i <= 2; i++) 47 for (var i = 1; i <= 2; i++)
46 Expect.equals(i, o.next()); 48 Expect.equals(i, o.next());
47 49
48 Expect.equals(null, o.list); 50 Expect.equals(null, o.list);
49 } 51 }
OLDNEW
« no previous file with comments | « tests/language/field3a_negative_test.dart ('k') | tests/language/field_initialization_order_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698