OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library matcher.operator_matchers_test; |
| 6 |
| 7 import 'package:unittest/unittest.dart'; |
| 8 |
| 9 import 'test_utils.dart'; |
| 10 |
| 11 void main() { |
| 12 initUtils(); |
| 13 |
| 14 test('anyOf', () { |
| 15 // with a list |
| 16 shouldFail( |
| 17 0, anyOf([equals(1), equals(2)]), "Expected: (<1> or <2>) Actual: <0>"); |
| 18 shouldPass(1, anyOf([equals(1), equals(2)])); |
| 19 |
| 20 // with individual items |
| 21 shouldFail( |
| 22 0, anyOf(equals(1), equals(2)), "Expected: (<1> or <2>) Actual: <0>"); |
| 23 shouldPass(1, anyOf(equals(1), equals(2))); |
| 24 }); |
| 25 |
| 26 test('allOf', () { |
| 27 // with a list |
| 28 shouldPass(1, allOf([lessThan(10), greaterThan(0)])); |
| 29 shouldFail(-1, allOf([lessThan(10), greaterThan(0)]), |
| 30 "Expected: (a value less than <10> and a value greater than <0>) " |
| 31 "Actual: <-1> " |
| 32 "Which: is not a value greater than <0>"); |
| 33 |
| 34 // with individual items |
| 35 shouldPass(1, allOf(lessThan(10), greaterThan(0))); |
| 36 shouldFail(-1, allOf(lessThan(10), greaterThan(0)), |
| 37 "Expected: (a value less than <10> and a value greater than <0>) " |
| 38 "Actual: <-1> " |
| 39 "Which: is not a value greater than <0>"); |
| 40 |
| 41 // with maximum items |
| 42 shouldPass(1, allOf(lessThan(10), lessThan(9), lessThan(8), |
| 43 lessThan(7), lessThan(6), lessThan(5), lessThan(4))); |
| 44 shouldFail(4, allOf(lessThan(10), lessThan(9), lessThan(8), lessThan(7), |
| 45 lessThan(6), lessThan(5), lessThan(4)), |
| 46 "Expected: (a value less than <10> and a value less than <9> and a " |
| 47 "value less than <8> and a value less than <7> and a value less than " |
| 48 "<6> and a value less than <5> and a value less than <4>) " |
| 49 "Actual: <4> " |
| 50 "Which: is not a value less than <4>"); |
| 51 }); |
| 52 |
| 53 test('If the first argument is a List, the rest must be null', () { |
| 54 expect(() => allOf([], 5), throwsArgumentError); |
| 55 expect( |
| 56 () => anyOf([], null, null, null, null, null, 42), throwsArgumentError); |
| 57 }); |
| 58 } |
OLD | NEW |