OLD | NEW |
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 library test_extension_test; | 5 library test_extension_test; |
6 | 6 |
7 import "test_extension.dart"; | 7 import "test_extension.dart"; |
8 | 8 |
| 9 class Expect { |
| 10 static void equals(expected, actual, [msg]) { |
| 11 if (expected != actual) { |
| 12 if (msg == null) msg = "Expected: $expected. Actual: $actual"; |
| 13 throw new RuntimeError(msg); |
| 14 } |
| 15 } |
| 16 |
| 17 static void isNull(x, [msg]) { |
| 18 if (x != null) { |
| 19 if (msg != null) msg = "$x not null"; |
| 20 throw new RuntimeError(msg); |
| 21 } |
| 22 } |
| 23 } |
| 24 |
9 main() { | 25 main() { |
10 Expect.equals('cat 13', new Cat(13).toString(), 'new Cat(13).toString()'); | 26 Expect.equals('cat 13', new Cat(13).toString(), 'new Cat(13).toString()'); |
11 | 27 |
12 Expect.equals(3, Cat.ifNull(null, 3), 'Cat.ifNull(null, 3)'); | 28 Expect.equals(3, Cat.ifNull(null, 3), 'Cat.ifNull(null, 3)'); |
13 Expect.equals(4, Cat.ifNull(4, null), 'Cat.ifNull(4, null)'); | 29 Expect.equals(4, Cat.ifNull(4, null), 'Cat.ifNull(4, null)'); |
14 Expect.equals(5, Cat.ifNull(5, 9), 'Cat.ifNull(5, 9)'); | 30 Expect.equals(5, Cat.ifNull(5, 9), 'Cat.ifNull(5, 9)'); |
15 Expect.isNull(Cat.ifNull(null, null), 'Cat.ifNull(null, null)'); | 31 Expect.isNull(Cat.ifNull(null, null), 'Cat.ifNull(null, null)'); |
16 | 32 |
17 try { | 33 try { |
18 Cat.throwMeTheBall("ball"); | 34 Cat.throwMeTheBall("ball"); |
19 } on String catch (e) { | 35 } on String catch (e) { |
20 Expect.equals("ball", e); | 36 Expect.equals("ball", e); |
21 } | 37 } |
22 } | 38 } |
OLD | NEW |