Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: tests/language/src/StringTest.dart

Issue 10248007: test rename overhaul: step 8 - language tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « tests/language/src/StringJoinTest.dart ('k') | tests/language/src/StringUnicode1NegativeTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698