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

Side by Side Diff: tests/language/licm_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) 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 sum = 0; 7 var sum = 0;
6 var foo = 0; 8 var foo = 0;
7 var bar = 1; 9 var bar = 1;
8 10
9 test() { 11 test() {
10 while (true) { 12 while (true) {
11 if (0 === foo) { 13 if (0 === foo) {
12 sum += 2; 14 sum += 2;
13 if (1 === bar) { 15 if (1 === bar) {
14 sum += 3; 16 sum += 3;
15 break; 17 break;
16 } 18 }
17 break; 19 break;
18 } 20 }
19 } 21 }
20 } 22 }
21 23
22 main() { 24 main() {
23 test(); 25 test();
24 Expect.equals(5, sum); 26 Expect.equals(5, sum);
25 } 27 }
OLDNEW
« no previous file with comments | « tests/language/library_same_name_used_test.dart ('k') | tests/language/list_double_index_in_loop2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698