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

1 2 3 4 5

  /external/mockito/src/org/mockito/internal/matchers/
Same.java 28 description.appendText("same(");
30 description.appendText("" + wanted);
32 description.appendText(")");
37 description.appendText("\"");
39 description.appendText("'");
And.java 36 description.appendText("and(");
40 description.appendText(", ");
43 description.appendText(")");
Or.java 36 description.appendText("or(");
40 description.appendText(", ");
43 description.appendText(")");
Not.java 29 description.appendText("not(");
31 description.appendText(")");
Any.java 26 description.appendText("<any>");
Contains.java 28 description.appendText("contains(\"" + substring + "\")");
EndsWith.java 28 description.appendText("endsWith(\"" + suffix + "\")");
  /external/hamcrest/library/src/org/hamcrest/text/
SubstringMatcher.java 22 description.appendText("a string ")
23 .appendText(relationship())
24 .appendText(" ")
IsEqualIgnoringCase.java 32 description.appendText("eqIgnoringCase(")
34 .appendText(")");
  /external/junit/src/org/junit/internal/matchers/
SubstringMatcher.java 19 description.appendText("a string ")
20 .appendText(relationship())
21 .appendText(" ")
  /external/hamcrest/integration/src/org/hamcrest/
MatcherAssert.java 14 description.appendText(reason)
15 .appendText("\nExpected: ")
17 .appendText("\n got: ")
19 .appendText("\n");
  /external/robolectric/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 + "]");
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/matcher/
PreferenceMatchers.java 42 description.appendText(" with summary string from resource id: ");
45 description.appendText("[");
46 description.appendText(resourceName);
47 description.appendText("]");
50 description.appendText(" value: " );
51 description.appendText(expectedText);
82 description.appendText(" a preference with summary matching: ");
101 description.appendText(" with title string from resource id: ");
104 description.appendText("[");
105 description.appendText(resourceName)
    [all...]
ViewMatchers.java 65 description.appendText("is assignable from class: " + clazz);
83 description.appendText("with class name: ");
106 description.appendText("is displayed on the screen to the user");
141 description.appendText(String.format(
171 description.appendText("is enabled");
188 description.appendText("is focusable");
205 description.appendText("has focus on the screen to the user");
230 description.appendText("has sibling: ");
273 description.appendText("with content description: ");
305 description.appendText("with id: ")
    [all...]
  /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/library/src/org/hamcrest/object/
IsEventFrom.java 35 description.appendText("an event of type ")
36 .appendText(eventClass.getName())
37 .appendText(" from ")
HasToString.java 22 .appendText("asString(")
24 .appendText(")");
IsCompatibleType.java 20 description.appendText("type < ").appendText(type.getName());
  /external/junit/src/org/junit/internal/
AssumptionViolatedException.java 32 description.appendText("got: ");
34 description.appendText(", expected: ");
37 description.appendText("failed assumption: " + fValue);
  /external/hamcrest/library/src/org/hamcrest/number/
IsCloseTo.java 29 description.appendText("a numeric value within ")
31 .appendText(" of ")
IsGreaterThan.java 23 description.appendText("a value greater than ");
  /external/hamcrest/src/org/hamcrest/core/
IsInstanceOf.java 32 description.appendText("an instance of ")
33 .appendText(theClass.getName());
IsSame.java 26 description.appendText("same(") .appendValue(object) .appendText(")");
  /external/mockito/src/org/mockito/
ArgumentMatcher.java 90 description.appendText(Decamelizer.decamelizeMatcher(className));

Completed in 379 milliseconds

1 2 3 4 5