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

Side by Side Diff: test/operator_matchers_test.dart

Issue 1151853004: pkg/matcher: upgrate tests to test (Closed) Base URL: https://github.com/dart-lang/matcher.git@master
Patch Set: Created 5 years, 7 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/numeric_matchers_test.dart ('k') | test/pretty_print_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.operator_matchers_test; 5 library matcher.operator_matchers_test;
6 6
7 import 'package:matcher/matcher.dart'; 7 import 'package:matcher/matcher.dart';
8 import 'package:unittest/unittest.dart' 8 import 'package:test/test.dart'
9 show test, group, expect, throwsArgumentError; 9 show test, group, expect, throwsArgumentError;
10 10
11 import 'test_utils.dart'; 11 import 'test_utils.dart';
12 12
13 void main() { 13 void main() {
14 test('anyOf', () { 14 test('anyOf', () {
15 // with a list 15 // with a list
16 shouldFail( 16 shouldFail(
17 0, anyOf([equals(1), equals(2)]), "Expected: (<1> or <2>) Actual: <0>"); 17 0, anyOf([equals(1), equals(2)]), "Expected: (<1> or <2>) Actual: <0>");
18 shouldPass(1, anyOf([equals(1), equals(2)])); 18 shouldPass(1, anyOf([equals(1), equals(2)]));
(...skipping 30 matching lines...) Expand all
49 "Actual: <4> " 49 "Actual: <4> "
50 "Which: is not a value less than <4>"); 50 "Which: is not a value less than <4>");
51 }); 51 });
52 52
53 test('If the first argument is a List, the rest must be null', () { 53 test('If the first argument is a List, the rest must be null', () {
54 expect(() => allOf([], 5), throwsArgumentError); 54 expect(() => allOf([], 5), throwsArgumentError);
55 expect( 55 expect(
56 () => anyOf([], null, null, null, null, null, 42), throwsArgumentError); 56 () => anyOf([], null, null, null, null, null, 42), throwsArgumentError);
57 }); 57 });
58 } 58 }
OLDNEW
« no previous file with comments | « test/numeric_matchers_test.dart ('k') | test/pretty_print_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698