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