HomeSort by relevance Sort by last modified time
    Searched refs:appendText (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
SubstringMatcher.java 27 mismatchDescription.appendText("was \"").appendText(item).appendText("\"");
32 description.appendText("a string ")
33 .appendText(relationship)
34 .appendText(" ")
37 description.appendText(" ignoring case");
IsSame.java 25 description.appendText("sameInstance(")
27 .appendText(")");
IsInstanceOf.java 42 mismatch.appendText("null");
47 mismatch.appendValue(item).appendText(" is a " + item.getClass().getName());
56 description.appendText("an instance of ").appendText(expectedClass.getName());
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/
StringContainsInOrder.java 32 mismatchDescription.appendText("was \"").appendText(item).appendText("\"");
37 description.appendText("a string containing ")
39 .appendText(" in order");
IsEqualIgnoringCase.java 31 mismatchDescription.appendText("was ").appendValue(item);
36 description.appendText("equalToIgnoringCase(")
38 .appendText(")");
IsEqualIgnoringWhiteSpace.java 33 mismatchDescription.appendText("was ").appendText(stripSpace(item));
38 description.appendText("equalToIgnoringWhiteSpace(")
40 .appendText(")");
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
MatcherAssert.java 12 description.appendText(reason)
13 .appendText("\nExpected: ")
15 .appendText("\n but: ");
FeatureMatcher.java 42 mismatch.appendText(featureName).appendText(" ");
51 description.appendText(featureDescription).appendText(" ")
BaseMatcher.java 21 description.appendText("was ").appendValue(item);
CustomMatcher.java 35 description.appendText(fixedDescription);
CustomTypeSafeMatcher.java 13 * mismatchDescription.appendText("was empty");
37 description.appendText(fixedDescription);
TypeSafeMatcher.java 76 description.appendText("was a ")
77 .appendText(item.getClass().getName())
78 .appendText(" (")
80 .appendText(")");
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/
IsCloseTo.java 31 .appendText(" differed by ")
33 .appendText(" more than delta ")
39 description.appendText("a numeric value within ")
41 .appendText(" of ")
IsNaN.java 22 mismatchDescription.appendText("was ").appendValue(item);
27 description.appendText("a double value of NaN");
BigDecimalCloseTo.java 28 .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/
HasResourceMatcher.java 33 description.appendText("actual view was null");
35 description.appendText("[" + actualResourceId + "]");
36 description.appendText(" to equal ");
37 description.appendText("[" + expectedResourceId + "]");
TextViewHasTextMatcher.java 33 description.appendText("[" + actualText + "]");
34 description.appendText(" to equal ");
35 description.appendText("[" + expected + "]");
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
SensorPowerTestActivity.java 39 appendText(message);
51 appendText(text);
84 appendText("Connect the device to the host machine via the USB passthrough.");
85 appendText("Execute the following script (the command is available in CtsVerifier.zip):");
86 appendText(" # python power/execute_power_tests.py --power_monitor <implementation> --run");
87 appendText("where \"<implementation>\" is the power monitor implementation being used, for example \"monsoon\"");
91 appendText("Waiting for connection from Host...");
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
IsEventFrom.java 25 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 ")
  /frameworks/support/emoji/core/tests/java/android/support/text/emoji/util/
EmojiMatcher.java 76 description.appendText("doesn't match " + expected);
90 description.appendText("should have EmojiSpans");
96 mismatchDescription.appendText(" has no EmojiSpans");
119 description.appendText("should have ").appendValue(mCount).appendText(" EmojiSpans");
125 mismatchDescription.appendText(" has ");
132 mismatchDescription.appendText(" EmojiSpans");
165 description.appendText("should have EmojiSpan at ")
168 description.appendText("should have EmojiSpan with resource id ")
171 description.appendText("should have EmojiSpan with resource id "
    [all...]
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/
BaseMatcherTest.java 20 description.appendText("SOME DESCRIPTION");
NullDescriptionTest.java 14 nullDescription.appendText("myText");
  /external/junit/src/main/java/org/junit/internal/
AssumptionViolatedException.java 93 description.appendText(fAssumption);
99 description.appendText(": ");
102 description.appendText("got: ");
106 description.appendText(", expected: ");
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
TestUtilsMatchers.java 48 description.appendText("with drawable of color: ");
50 description.appendText(failedComparisonDescription);
96 description.appendText("with background of color: ");
98 description.appendText(failedComparisonDescription);
138 description.appendText("with ascendant background of color: ");
140 description.appendText(failedComparisonDescription);
178 description.appendText("checked text view: ");
180 description.appendText(failedDescription);
204 description.appendText("non checked text view: ");
206 description.appendText(failedDescription)
    [all...]
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/comparator/
ComparatorMatcherBuilder.java 85 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(" when compared by ").appendValue(comparator)
    [all...]

Completed in 821 milliseconds

1 2 3 4 5 6 7 8