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

Side by Side Diff: test/escape_test.dart

Issue 1584563003: Get rid of all the library tags. (Closed) Base URL: git@github.com:dart-lang/matcher@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « test/core_matchers_test.dart ('k') | test/iterable_matchers_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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.escape_test;
6
7 import 'package:matcher/src/util.dart'; 5 import 'package:matcher/src/util.dart';
8 import 'package:test/test.dart'; 6 import 'package:test/test.dart';
9 7
10 void main() { 8 void main() {
11 group('escaping should work with', () { 9 group('escaping should work with', () {
12 _testEscaping('no escaped chars', 'Hello, world!', 'Hello, world!'); 10 _testEscaping('no escaped chars', 'Hello, world!', 'Hello, world!');
13 _testEscaping('newline', '\n', r'\n'); 11 _testEscaping('newline', '\n', r'\n');
14 _testEscaping('carriage return', '\r', r'\r'); 12 _testEscaping('carriage return', '\r', r'\r');
15 _testEscaping('form feed', '\f', r'\f'); 13 _testEscaping('form feed', '\f', r'\f');
16 _testEscaping('backspace', '\b', r'\b'); 14 _testEscaping('backspace', '\b', r'\b');
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 expect(s1 != s2, isTrue, reason: 'The source values should be unequal'); 52 expect(s1 != s2, isTrue, reason: 'The source values should be unequal');
55 53
56 var escapedS1 = escape(s1); 54 var escapedS1 = escape(s1);
57 var escapedS2 = escape(s2); 55 var escapedS2 = escape(s2);
58 56
59 // Explicitly not using the equals matcher 57 // Explicitly not using the equals matcher
60 expect(escapedS1 != escapedS2, isTrue, 58 expect(escapedS1 != escapedS2, isTrue,
61 reason: 'Unequal strings, when escaped, should remain unequal.'); 59 reason: 'Unequal strings, when escaped, should remain unequal.');
62 }); 60 });
63 } 61 }
OLDNEW
« no previous file with comments | « test/core_matchers_test.dart ('k') | test/iterable_matchers_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698