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 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
5 class RawStringTest { | 7 class RawStringTest { |
6 static testMain() { | 8 static testMain() { |
7 Expect.equals("abcd", r"abcd"); | 9 Expect.equals("abcd", r"abcd"); |
8 Expect.equals("", r""); | 10 Expect.equals("", r""); |
9 Expect.equals("", r''); | 11 Expect.equals("", r''); |
10 Expect.equals("", r""""""); | 12 Expect.equals("", r""""""); |
11 Expect.equals("", r''''''); | 13 Expect.equals("", r''''''); |
12 Expect.equals("''''", r"''''"); | 14 Expect.equals("''''", r"''''"); |
13 Expect.equals('""""', r'""""'); | 15 Expect.equals('""""', r'""""'); |
14 Expect.equals("1\n2\n3", r"""1 | 16 Expect.equals("1\n2\n3", r"""1 |
(...skipping 16 matching lines...) Expand all Loading... |
31 Expect.equals("\${12}", r"${12}"); | 33 Expect.equals("\${12}", r"${12}"); |
32 Expect.equals("\\a\\b\\c\\d\\e\\f\\g\\h\\i\\j\\k\\l\\m", | 34 Expect.equals("\\a\\b\\c\\d\\e\\f\\g\\h\\i\\j\\k\\l\\m", |
33 r"\a\b\c\d\e\f\g\h\i\j\k\l\m"); | 35 r"\a\b\c\d\e\f\g\h\i\j\k\l\m"); |
34 Expect.equals("\\n\\o\\p\\q\\r\\s\\t\\u\\v\\w\\x\\y\\z", | 36 Expect.equals("\\n\\o\\p\\q\\r\\s\\t\\u\\v\\w\\x\\y\\z", |
35 r"\n\o\p\q\r\s\t\u\v\w\x\y\z"); | 37 r"\n\o\p\q\r\s\t\u\v\w\x\y\z"); |
36 } | 38 } |
37 } | 39 } |
38 main() { | 40 main() { |
39 RawStringTest.testMain(); | 41 RawStringTest.testMain(); |
40 } | 42 } |
OLD | NEW |