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

Unified Diff: test/numeric_matchers_test.dart

Issue 840133003: matcher: fixed status file, formatting, tweaks to readme (Closed) Base URL: https://github.com/dart-lang/matcher.git@master
Patch Set: nits Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mirror_matchers_test.dart ('k') | test/operator_matchers_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/numeric_matchers_test.dart
diff --git a/test/numeric_matchers_test.dart b/test/numeric_matchers_test.dart
index 60347bdb2f802eed9a220be67d0ca90b7989eb4b..7ced6b4b920aa1b051fe499cd5e0982b591888e5 100644
--- a/test/numeric_matchers_test.dart
+++ b/test/numeric_matchers_test.dart
@@ -14,23 +14,21 @@ void main() {
test('greaterThan', () {
shouldPass(10, greaterThan(9));
- shouldFail(9, greaterThan(10),
- "Expected: a value greater than <10> "
- "Actual: <9> "
- "Which: is not a value greater than <10>");
+ shouldFail(9, greaterThan(10), "Expected: a value greater than <10> "
+ "Actual: <9> "
+ "Which: is not a value greater than <10>");
});
test('greaterThanOrEqualTo', () {
shouldPass(10, greaterThanOrEqualTo(10));
shouldFail(9, greaterThanOrEqualTo(10),
- "Expected: a value greater than or equal to <10> "
- "Actual: <9> "
- "Which: is not a value greater than or equal to <10>");
+ "Expected: a value greater than or equal to <10> "
+ "Actual: <9> "
+ "Which: is not a value greater than or equal to <10>");
});
test('lessThan', () {
- shouldFail(10, lessThan(9),
- "Expected: a value less than <9> "
+ shouldFail(10, lessThan(9), "Expected: a value less than <9> "
"Actual: <10> "
"Which: is not a value less than <9>");
shouldPass(9, lessThan(10));
@@ -39,34 +37,30 @@ void main() {
test('lessThanOrEqualTo', () {
shouldPass(10, lessThanOrEqualTo(10));
shouldFail(11, lessThanOrEqualTo(10),
- "Expected: a value less than or equal to <10> "
- "Actual: <11> "
- "Which: is not a value less than or equal to <10>");
+ "Expected: a value less than or equal to <10> "
+ "Actual: <11> "
+ "Which: is not a value less than or equal to <10>");
});
test('isZero', () {
shouldPass(0, isZero);
- shouldFail(1, isZero,
- "Expected: a value equal to <0> "
+ shouldFail(1, isZero, "Expected: a value equal to <0> "
"Actual: <1> "
"Which: is not a value equal to <0>");
});
test('isNonZero', () {
- shouldFail(0, isNonZero,
- "Expected: a value not equal to <0> "
+ shouldFail(0, isNonZero, "Expected: a value not equal to <0> "
"Actual: <0> "
"Which: is not a value not equal to <0>");
shouldPass(1, isNonZero);
});
test('isPositive', () {
- shouldFail(-1, isPositive,
- "Expected: a positive value "
+ shouldFail(-1, isPositive, "Expected: a positive value "
"Actual: <-1> "
"Which: is not a positive value");
- shouldFail(0, isPositive,
- "Expected: a positive value "
+ shouldFail(0, isPositive, "Expected: a positive value "
"Actual: <0> "
"Which: is not a positive value");
shouldPass(1, isPositive);
@@ -74,8 +68,7 @@ void main() {
test('isNegative', () {
shouldPass(-1, isNegative);
- shouldFail(0, isNegative,
- "Expected: a negative value "
+ shouldFail(0, isNegative, "Expected: a negative value "
"Actual: <0> "
"Which: is not a negative value");
});
@@ -83,8 +76,7 @@ void main() {
test('isNonPositive', () {
shouldPass(-1, isNonPositive);
shouldPass(0, isNonPositive);
- shouldFail(1, isNonPositive,
- "Expected: a non-positive value "
+ shouldFail(1, isNonPositive, "Expected: a non-positive value "
"Actual: <1> "
"Which: is not a non-positive value");
});
@@ -92,10 +84,9 @@ void main() {
test('isNonNegative', () {
shouldPass(1, isNonNegative);
shouldPass(0, isNonNegative);
- shouldFail(-1, isNonNegative,
- "Expected: a non-negative value "
- "Actual: <-1> "
- "Which: is not a non-negative value");
+ shouldFail(-1, isNonNegative, "Expected: a non-negative value "
+ "Actual: <-1> "
+ "Which: is not a non-negative value");
});
test('closeTo', () {
@@ -113,39 +104,39 @@ void main() {
});
test('inInclusiveRange', () {
- shouldFail(-1, inInclusiveRange(0,2),
+ shouldFail(-1, inInclusiveRange(0, 2),
"Expected: be in range from 0 (inclusive) to 2 (inclusive) "
"Actual: <-1>");
- shouldPass(0, inInclusiveRange(0,2));
- shouldPass(1, inInclusiveRange(0,2));
- shouldPass(2, inInclusiveRange(0,2));
- shouldFail(3, inInclusiveRange(0,2),
+ shouldPass(0, inInclusiveRange(0, 2));
+ shouldPass(1, inInclusiveRange(0, 2));
+ shouldPass(2, inInclusiveRange(0, 2));
+ shouldFail(3, inInclusiveRange(0, 2),
"Expected: be in range from 0 (inclusive) to 2 (inclusive) "
"Actual: <3>");
});
test('inExclusiveRange', () {
- shouldFail(0, inExclusiveRange(0,2),
+ shouldFail(0, inExclusiveRange(0, 2),
"Expected: be in range from 0 (exclusive) to 2 (exclusive) "
"Actual: <0>");
- shouldPass(1, inExclusiveRange(0,2));
- shouldFail(2, inExclusiveRange(0,2),
+ shouldPass(1, inExclusiveRange(0, 2));
+ shouldFail(2, inExclusiveRange(0, 2),
"Expected: be in range from 0 (exclusive) to 2 (exclusive) "
"Actual: <2>");
});
test('inOpenClosedRange', () {
- shouldFail(0, inOpenClosedRange(0,2),
+ shouldFail(0, inOpenClosedRange(0, 2),
"Expected: be in range from 0 (exclusive) to 2 (inclusive) "
"Actual: <0>");
- shouldPass(1, inOpenClosedRange(0,2));
- shouldPass(2, inOpenClosedRange(0,2));
+ shouldPass(1, inOpenClosedRange(0, 2));
+ shouldPass(2, inOpenClosedRange(0, 2));
});
test('inClosedOpenRange', () {
- shouldPass(0, inClosedOpenRange(0,2));
- shouldPass(1, inClosedOpenRange(0,2));
- shouldFail(2, inClosedOpenRange(0,2),
+ shouldPass(0, inClosedOpenRange(0, 2));
+ shouldPass(1, inClosedOpenRange(0, 2));
+ shouldFail(2, inClosedOpenRange(0, 2),
"Expected: be in range from 0 (inclusive) to 2 (exclusive) "
"Actual: <2>");
});
« 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