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 program for testing for statement. | 4 // Dart test program for testing for statement. |
5 | 5 |
| 6 import "package:expect/expect.dart"; |
| 7 |
6 class Helper { | 8 class Helper { |
7 static int f1() { | 9 static int f1() { |
8 for (;;) return 1; | 10 for (;;) return 1; |
9 } | 11 } |
10 | 12 |
11 static int f2(var n) { | 13 static int f2(var n) { |
12 int i = 0; | 14 int i = 0; |
13 for (; i < n; i++); | 15 for (; i < n; i++); |
14 return i; | 16 return i; |
15 } | 17 } |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 Expect.equals(0, Helper.f4(0)); | 49 Expect.equals(0, Helper.f4(0)); |
48 Expect.equals(1, Helper.f4(1)); | 50 Expect.equals(1, Helper.f4(1)); |
49 Expect.equals(6, Helper.f4(6)); | 51 Expect.equals(6, Helper.f4(6)); |
50 Expect.equals(6, Helper.f4(10)); | 52 Expect.equals(6, Helper.f4(10)); |
51 } | 53 } |
52 } | 54 } |
53 | 55 |
54 main() { | 56 main() { |
55 ForTest.testMain(); | 57 ForTest.testMain(); |
56 } | 58 } |
OLD | NEW |