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(); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |