Searched refs:appendText (Results 1 - 25 of 100) sorted by relevance

1234

/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DSubstringMatcher.java27 mismatchDescription.appendText("was \"").appendText(item).appendText("\"");
32 description.appendText("a string ")
33 .appendText(relationship)
34 .appendText(" ")
37 description.appendText(" ignoring case");
H A DIsSame.java25 description.appendText("sameInstance(")
27 .appendText(")");
H A DIsInstanceOf.java42 mismatch.appendText("null");
47 mismatch.appendValue(item).appendText(" is a " + item.getClass().getName());
56 description.appendText("an instance of ").appendText(expectedClass.getName());
H A DIsCollectionContaining.java23 mismatchDescription.appendText("was empty");
33 mismatchDescription.appendText("mismatches were: [");
37 mismatchDescription.appendText(", ");
42 mismatchDescription.appendText("]");
53 .appendText("a collection containing ")
H A DEvery.java18 mismatchDescription.appendText("an item ");
28 description.appendText("every item is ").appendDescriptionOf(matcher);
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/
H A DStringContainsInOrder.java32 mismatchDescription.appendText("was \"").appendText(item).appendText("\"");
37 description.appendText("a string containing ")
39 .appendText(" in order");
H A DIsEqualIgnoringCase.java31 mismatchDescription.appendText("was ").appendValue(item);
36 description.appendText("equalToIgnoringCase(")
38 .appendText(")");
H A DIsEqualIgnoringWhiteSpace.java33 mismatchDescription.appendText("was ").appendText(stripSpace(item));
38 description.appendText("equalToIgnoringWhiteSpace(")
40 .appendText(")");
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
H A DMatcherAssert.java12 description.appendText(reason)
13 .appendText("\nExpected: ")
15 .appendText("\n but: ");
H A DFeatureMatcher.java42 mismatch.appendText(featureName).appendText(" ");
51 description.appendText(featureDescription).appendText(" ")
H A DBaseMatcher.java21 description.appendText("was ").appendValue(item);
H A DCustomMatcher.java35 description.appendText(fixedDescription);
H A DCustomTypeSafeMatcher.java13 * mismatchDescription.appendText("was empty");
37 description.appendText(fixedDescription);
H A DTypeSafeMatcher.java76 description.appendText("was a ")
77 .appendText(item.getClass().getName())
78 .appendText(" (")
80 .appendText(")");
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/
H A DIsCloseTo.java31 .appendText(" differed by ")
33 .appendText(" more than delta ")
39 description.appendText("a numeric value within ")
41 .appendText(" of ")
H A DIsNaN.java22 mismatchDescription.appendText("was ").appendValue(item);
27 description.appendText("a double value of NaN");
H A DBigDecimalCloseTo.java28 .appendText(" differed by ")
30 .appendText(" more than delta ")
36 description.appendText("a numeric value within ")
38 .appendText(" of ")
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
H A DHasResourceMatcher.java33 description.appendText("actual view was null");
35 description.appendText("[" + actualResourceId + "]");
36 description.appendText(" to equal ");
37 description.appendText("[" + expectedResourceId + "]");
H A DTextViewHasTextMatcher.java33 description.appendText("[" + actualText + "]");
34 description.appendText(" to equal ");
35 description.appendText("[" + expected + "]");
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
H A DIsEventFrom.java25 mismatchDescription.appendText("item type was " + item.getClass().getName());
30 mismatchDescription.appendText("source was ").appendValue(item.getSource());
43 description.appendText("an event of type ")
44 .appendText(eventClass.getName())
45 .appendText(" from ")
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/
H A DBaseMatcherTest.java20 description.appendText("SOME DESCRIPTION");
H A DNullDescriptionTest.java14 nullDescription.appendText("myText");
/external/junit/src/main/java/org/junit/internal/
H A DAssumptionViolatedException.java93 description.appendText(fAssumption);
99 description.appendText(": ");
102 description.appendText("got: ");
106 description.appendText(", expected: ");
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/comparator/
H A DComparatorMatcherBuilder.java85 mismatchDescription.appendValue(actual).appendText(" was ")
86 .appendText(asText(comparator.compare(actual, expected)))
87 .appendText(" ").appendValue(expected);
89 mismatchDescription.appendText(" when compared by ").appendValue(comparator);
95 description.appendText("a value ").appendText(asText(minCompare));
97 description.appendText(" or ").appendText(asText(maxCompare));
99 description.appendText(" ").appendValue(expected);
101 description.appendText(" whe
[all...]
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
H A DIsIterableContainingInAnyOrder.java35 description.appendText("iterable with items ")
37 .appendText(" in any order");
51 mismatchDescription.appendText("no match for: ").appendValue(item);
62 .appendText("no item matches: ").appendList("", ", ", "", matchers)
63 .appendText(" in ").appendValueList("[", ", ", "]", items);
74 mismatchDescription.appendText("not matched: ").appendValue(item);

Completed in 1796 milliseconds

1234