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

Side by Side Diff: test/numeric_matchers_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/mirror_matchers_test.dart ('k') | test/operator_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) 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.numeric_matchers_test;
6
7 import 'package:matcher/matcher.dart'; 5 import 'package:matcher/matcher.dart';
8 import 'package:test/test.dart' show test, group; 6 import 'package:test/test.dart' show test, group;
9 7
10 import 'test_utils.dart'; 8 import 'test_utils.dart';
11 9
12 void main() { 10 void main() {
13 test('greaterThan', () { 11 test('greaterThan', () {
14 shouldPass(10, greaterThan(9)); 12 shouldPass(10, greaterThan(9));
15 shouldFail(9, greaterThan(10), "Expected: a value greater than <10> " 13 shouldFail(9, greaterThan(10), "Expected: a value greater than <10> "
16 "Actual: <9> " 14 "Actual: <9> "
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 }); 130 });
133 131
134 test('inClosedOpenRange', () { 132 test('inClosedOpenRange', () {
135 shouldPass(0, inClosedOpenRange(0, 2)); 133 shouldPass(0, inClosedOpenRange(0, 2));
136 shouldPass(1, inClosedOpenRange(0, 2)); 134 shouldPass(1, inClosedOpenRange(0, 2));
137 shouldFail(2, inClosedOpenRange(0, 2), 135 shouldFail(2, inClosedOpenRange(0, 2),
138 "Expected: be in range from 0 (inclusive) to 2 (exclusive) " 136 "Expected: be in range from 0 (inclusive) to 2 (exclusive) "
139 "Actual: <2>"); 137 "Actual: <2>");
140 }); 138 });
141 } 139 }
OLDNEW
« no previous file with comments | « test/mirror_matchers_test.dart ('k') | test/operator_matchers_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698