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 // Replace with shared test once interface issues clarified. | 4 // Replace with shared test once interface issues clarified. |
5 | 5 |
6 class StringTest { | 6 class StringTest { |
7 | 7 |
8 static testMain() { | 8 static testMain() { |
9 testCodePoints(); | 9 testCodePoints(); |
10 testNoSuchMethod(); | 10 testNoSuchMethod(); |
11 testStringsJoin(); | 11 testStringsJoin(); |
12 testCharCodes(); | 12 testCharCodes(); |
13 } | 13 } |
14 | 14 |
15 static testCodePoints() { | 15 static testCodePoints() { |
16 String str = "string"; | 16 String str = "string"; |
17 for (int i = 0; i < str.length; i++) { | 17 for (int i = 0; i < str.length; i++) { |
18 Expect.equals(true, str[i] is String); | 18 Expect.equals(true, str[i] is String); |
19 Expect.equals(true, str.charCodeAt(i) is int); | 19 Expect.equals(true, str.charCodeAt(i) is int); |
20 } | 20 } |
21 } | 21 } |
22 | 22 |
23 static testStringsJoin() { | 23 static testStringsJoin() { |
24 List<String> a = new List<String>(2); | 24 List<String> a = new List<String>.fixedLength(2); |
25 a[0] = "Hello"; | 25 a[0] = "Hello"; |
26 a[1] = "World"; | 26 a[1] = "World"; |
27 String s = Strings.join(a, "*^*"); | 27 String s = Strings.join(a, "*^*"); |
28 Expect.equals("Hello*^*World", s); | 28 Expect.equals("Hello*^*World", s); |
29 } | 29 } |
30 | 30 |
31 static testNoSuchMethod() { | 31 static testNoSuchMethod() { |
32 String a = "Hello"; | 32 String a = "Hello"; |
33 bool exception_caught = false; | 33 bool exception_caught = false; |
34 try { | 34 try { |
35 a[1] = 12; // Throw exception. | 35 a[1] = 12; // Throw exception. |
36 } on NoSuchMethodError catch (e) { | 36 } on NoSuchMethodError catch (e) { |
37 exception_caught = true; | 37 exception_caught = true; |
38 } | 38 } |
39 Expect.equals(true, exception_caught); | 39 Expect.equals(true, exception_caught); |
40 } | 40 } |
41 | 41 |
42 static testCharCodes() { | 42 static testCharCodes() { |
43 String s = new String.fromCharCodes(const [0x41, 0xC1, 0x424]); | 43 String s = new String.fromCharCodes(const [0x41, 0xC1, 0x424]); |
44 Expect.equals("A", s[0]); | 44 Expect.equals("A", s[0]); |
45 Expect.equals(0x424, s.charCodeAt(2)); | 45 Expect.equals(0x424, s.charCodeAt(2)); |
46 } | 46 } |
47 } | 47 } |
48 | 48 |
49 main() { | 49 main() { |
50 StringTest.testMain(); | 50 StringTest.testMain(); |
51 } | 51 } |
OLD | NEW |