| 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 | |
| 25 main() { | 9 main() { |
| 26 Expect.equals('cat 13', new Cat(13).toString(), 'new Cat(13).toString()'); | 10 Expect.equals('cat 13', new Cat(13).toString(), 'new Cat(13).toString()'); |
| 27 | 11 |
| 28 Expect.equals(3, Cat.ifNull(null, 3), 'Cat.ifNull(null, 3)'); | 12 Expect.equals(3, Cat.ifNull(null, 3), 'Cat.ifNull(null, 3)'); |
| 29 Expect.equals(4, Cat.ifNull(4, null), 'Cat.ifNull(4, null)'); | 13 Expect.equals(4, Cat.ifNull(4, null), 'Cat.ifNull(4, null)'); |
| 30 Expect.equals(5, Cat.ifNull(5, 9), 'Cat.ifNull(5, 9)'); | 14 Expect.equals(5, Cat.ifNull(5, 9), 'Cat.ifNull(5, 9)'); |
| 31 Expect.isNull(Cat.ifNull(null, null), 'Cat.ifNull(null, null)'); | 15 Expect.isNull(Cat.ifNull(null, null), 'Cat.ifNull(null, null)'); |
| 32 | 16 |
| 33 try { | 17 try { |
| 34 Cat.throwMeTheBall("ball"); | 18 Cat.throwMeTheBall("ball"); |
| 35 } on String catch (e) { | 19 } on String catch (e) { |
| 36 Expect.equals("ball", e); | 20 Expect.equals("ball", e); |
| 37 } | 21 } |
| 38 } | 22 } |
| OLD | NEW |