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

Side by Side Diff: tests/language/do_while2_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
« no previous file with comments | « tests/language/div_with_power_of_two_test.dart ('k') | tests/language/do_while3_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 var a = 42; 7 var a = 42;
6 8
7 foo1() { 9 foo1() {
8 var i = 0; 10 var i = 0;
9 var saved; 11 var saved;
10 do { 12 do {
11 saved = i; 13 saved = i;
12 i = a; 14 i = a;
13 } while (i == saved); 15 } while (i == saved);
14 Expect.equals(0, saved); 16 Expect.equals(0, saved);
(...skipping 21 matching lines...) Expand all
36 } while (i != saved); 38 } while (i != saved);
37 Expect.equals(42, saved); 39 Expect.equals(42, saved);
38 Expect.equals(42, i); 40 Expect.equals(42, i);
39 } 41 }
40 42
41 main() { 43 main() {
42 foo1(); 44 foo1();
43 foo2(); 45 foo2();
44 foo3(); 46 foo3();
45 } 47 }
OLDNEW
« no previous file with comments | « tests/language/div_with_power_of_two_test.dart ('k') | tests/language/do_while3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698