OLD | NEW |
---|---|
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
6 | 6 |
7 const WHITESPACE = const [ | 7 const WHITESPACE = const [ |
8 0x09, | 8 0x09, |
9 0x0A, | 9 0x0A, |
10 0x0B, | 10 0x0B, |
11 0x0C, | 11 0x0C, |
12 0x0D, | 12 0x0D, |
13 0x20, | 13 0x20, |
14 0x85, | 14 0x85, |
15 0xA0, | 15 0xA0, |
16 0x1680, | 16 0x1680, |
17 0x180E, | |
18 0x2000, | 17 0x2000, |
19 0x2001, | 18 0x2001, |
20 0x2002, | 19 0x2002, |
21 0x2003, | 20 0x2003, |
22 0x2004, | 21 0x2004, |
23 0x2005, | 22 0x2005, |
24 0x2006, | 23 0x2006, |
25 0x2007, | 24 0x2007, |
26 0x2008, | 25 0x2008, |
27 0x2009, | 26 0x2009, |
(...skipping 10 matching lines...) Expand all Loading... | |
38 for (var ws in WHITESPACE) { | 37 for (var ws in WHITESPACE) { |
39 var name = ws.toRadixString(16); | 38 var name = ws.toRadixString(16); |
40 var c = new String.fromCharCode(ws); | 39 var c = new String.fromCharCode(ws); |
41 Expect.equals("", c.trim(), "$name"); | 40 Expect.equals("", c.trim(), "$name"); |
42 Expect.equals("a", ("a" + c).trim(), "a-$name"); | 41 Expect.equals("a", ("a" + c).trim(), "a-$name"); |
43 Expect.equals("a", (c + "a").trim(), "$name-a"); | 42 Expect.equals("a", (c + "a").trim(), "$name-a"); |
44 Expect.equals("a", (c + c + "a" + c + c).trim(), "$name around"); | 43 Expect.equals("a", (c + c + "a" + c + c).trim(), "$name around"); |
45 Expect.equals("a" + c + "a", (c + c + "a" + c + "a" + c + c).trim(), | 44 Expect.equals("a" + c + "a", (c + c + "a" + c + "a" + c + c).trim(), |
46 "$name many"); | 45 "$name many"); |
47 } | 46 } |
48 Expect.equals("", new String.fromCharCodes(WHITESPACE).trim(), "ALL"); | 47 Expect.equals("", new String.fromCharCodes(WHITESPACE).trim(), "ALL"); |
Lasse Reichstein Nielsen
2017/03/14 08:21:17
As a regression test, we should check that U+180E
| |
49 } | 48 } |
OLD | NEW |