| 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 | 4 |
| 5 // TODO(ngeoffray): test String methods with null arguments. | 5 // TODO(ngeoffray): test String methods with null arguments. |
| 6 class StringTest { | 6 class StringTest { |
| 7 | 7 |
| 8 static testMain() { | 8 static testMain() { |
| 9 testOutOfRange(); | 9 testOutOfRange(); |
| 10 testIllegalArgument(); | 10 testIllegalArgument(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 testCompareTo(); | 21 testCompareTo(); |
| 22 testToList(); | 22 testToList(); |
| 23 testCharCodes(); | 23 testCharCodes(); |
| 24 } | 24 } |
| 25 | 25 |
| 26 static void testOutOfRange() { | 26 static void testOutOfRange() { |
| 27 String a = "Hello"; | 27 String a = "Hello"; |
| 28 bool exception_caught = false; | 28 bool exception_caught = false; |
| 29 try { | 29 try { |
| 30 var c = a[20]; // Throw exception. | 30 var c = a[20]; // Throw exception. |
| 31 } on IndexOutOfRangeException catch (e) { | 31 } on RangeError catch (e) { |
| 32 exception_caught = true; | 32 exception_caught = true; |
| 33 } | 33 } |
| 34 Expect.equals(true, exception_caught); | 34 Expect.equals(true, exception_caught); |
| 35 } | 35 } |
| 36 | 36 |
| 37 static testIllegalArgument() { | 37 static testIllegalArgument() { |
| 38 String a = "Hello"; | 38 String a = "Hello"; |
| 39 bool exception_caught = false; | 39 bool exception_caught = false; |
| 40 try { | 40 try { |
| 41 var c = a[2.2]; // Throw exception. | 41 var c = a[2.2]; // Throw exception. |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 } | 292 } |
| 293 test("abc"); | 293 test("abc"); |
| 294 test(""); | 294 test(""); |
| 295 test(" "); | 295 test(" "); |
| 296 } | 296 } |
| 297 } | 297 } |
| 298 | 298 |
| 299 main() { | 299 main() { |
| 300 StringTest.testMain(); | 300 StringTest.testMain(); |
| 301 } | 301 } |
| OLD | NEW |