OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 library matcher.string_matchers_test; | 5 library matcher.string_matchers_test; |
6 | 6 |
7 import 'package:matcher/matcher.dart'; | 7 import 'package:matcher/matcher.dart'; |
8 import 'package:unittest/unittest.dart' show test, group; | 8 import 'package:unittest/unittest.dart' show test, group, expect; |
9 | 9 |
10 import 'test_utils.dart'; | 10 import 'test_utils.dart'; |
11 | 11 |
12 void main() { | 12 void main() { |
13 initUtils(); | |
14 | |
15 test('Reports mismatches in whitespace and escape sequences', () { | 13 test('Reports mismatches in whitespace and escape sequences', () { |
16 shouldFail('before\nafter', equals('before\\nafter'), | 14 shouldFail('before\nafter', equals('before\\nafter'), |
17 contains('Differ at offset 7')); | 15 contains('Differ at offset 7')); |
18 }); | 16 }); |
19 | 17 |
20 test('collapseWhitespace', () { | 18 test('collapseWhitespace', () { |
21 var source = '\t\r\n hello\t\r\n world\r\t \n'; | 19 var source = '\t\r\n hello\t\r\n world\r\t \n'; |
22 expect(collapseWhitespace(source), 'hello world'); | 20 expect(collapseWhitespace(source), 'hello world'); |
23 }); | 21 }); |
24 | 22 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "Actual: 'goodbye cruel world'"); | 104 "Actual: 'goodbye cruel world'"); |
107 }); | 105 }); |
108 | 106 |
109 test('matches', () { | 107 test('matches', () { |
110 shouldPass('c0d', matches('[a-z][0-9][a-z]')); | 108 shouldPass('c0d', matches('[a-z][0-9][a-z]')); |
111 shouldPass('c0d', matches(new RegExp('[a-z][0-9][a-z]'))); | 109 shouldPass('c0d', matches(new RegExp('[a-z][0-9][a-z]'))); |
112 shouldFail('cOd', matches('[a-z][0-9][a-z]'), | 110 shouldFail('cOd', matches('[a-z][0-9][a-z]'), |
113 "Expected: match '[a-z][0-9][a-z]' Actual: 'cOd'"); | 111 "Expected: match '[a-z][0-9][a-z]' Actual: 'cOd'"); |
114 }); | 112 }); |
115 } | 113 } |
OLD | NEW |