OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Dart test for continue in for, do/while and while loops. | 4 // Dart test for continue in for, do/while and while loops. |
5 | 5 |
| 6 import "package:expect/expect.dart"; |
| 7 |
6 class ContinueTest { | 8 class ContinueTest { |
7 static testMain() { | 9 static testMain() { |
8 int i; | 10 int i; |
9 int forCounter = 0; | 11 int forCounter = 0; |
10 for (i = 0; i < 10; i++) { | 12 for (i = 0; i < 10; i++) { |
11 if (i > 3) continue; | 13 if (i > 3) continue; |
12 forCounter++; | 14 forCounter++; |
13 } | 15 } |
14 Expect.equals(4, forCounter); | 16 Expect.equals(4, forCounter); |
15 Expect.equals(10, i); | 17 Expect.equals(10, i); |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 } | 66 } |
65 i = 30; | 67 i = 30; |
66 } while (false); | 68 } while (false); |
67 Expect.equals(22, i); | 69 Expect.equals(22, i); |
68 } | 70 } |
69 } | 71 } |
70 | 72 |
71 main() { | 73 main() { |
72 ContinueTest.testMain(); | 74 ContinueTest.testMain(); |
73 } | 75 } |
OLD | NEW |