HomeSort by relevance Sort by last modified time
    Searched refs:notNullValue (Results 1 - 19 of 19) sorted by null

  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
IsNullTest.java 7 import static org.hamcrest.core.IsNull.notNullValue;
14 private final Matcher<Object> notNullMatcher = notNullValue();
37 requiresStringMatcher(notNullValue(String.class));
AllOfTest.java 10 import static org.hamcrest.core.IsNull.notNullValue;
46 is(notNullValue()),
CombinableTest.java 9 import static org.hamcrest.core.IsNull.notNullValue;
66 Matcher<String> matcher = CombinableMatcher.both(equalTo("yellow")).and(notNullValue(String.class));
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
IsNull.java 36 * <pre>assertThat(cheese, is(notNullValue()))</pre>
41 public static Matcher<Object> notNullValue() {
62 * <pre>assertThat(cheese, is(notNullValue(X.class)))</pre>
70 public static <T> Matcher<T> notNullValue(Class<T> type) {
  /external/junit/src/main/java/org/junit/
Assume.java 6 import static org.hamcrest.CoreMatchers.notNullValue;
73 assumeThat(asList(objects), everyItem(notNullValue()));
  /cts/hostsidetests/appsecurity/test-apps/IsolatedSplitApp/src/com/android/cts/isolatedsplitapp/
SplitAppTest.java 87 assertThat(resources, notNullValue());
101 assertThat(resources, notNullValue());
116 assertThat(resources, notNullValue());
132 assertThat(resources, notNullValue());
160 assertThat(resources, notNullValue());
179 assertThat(resources, notNullValue());
209 assertThat(resources, notNullValue());
225 assertThat(resources, notNullValue());
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
CoreMatchers.java 315 * <pre>assertThat(cheese, is(notNullValue()))</pre>
319 public static org.hamcrest.Matcher<java.lang.Object> notNullValue() {
320 return org.hamcrest.core.IsNull.notNullValue();
327 * <pre>assertThat(cheese, is(notNullValue(X.class)))</pre>
334 public static <T> org.hamcrest.Matcher<T> notNullValue(java.lang.Class<T> type) {
335 return org.hamcrest.core.IsNull.notNullValue(type);
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1/
ClientTest.java 26 import static org.hamcrest.CoreMatchers.notNullValue;
212 assertThat(info.filter, is(notNullValue()));
237 assertThat(info.filter, is(notNullValue()));
371 assertThat(providerInfo, is(notNullValue()));
383 assertThat(providerInfo, is(notNullValue()));
    [all...]
  /cts/tests/framework/base/windowmanager/src/android/server/wm/
WindowInsetsPolicyTest.java 32 import static org.hamcrest.Matchers.notNullValue;
99 Assert.assertThat("test setup failed, no insets dispatched", insets, notNullValue());
109 Assert.assertThat("test setup failed, no insets at root", insets, notNullValue());
DisplayCutoutTests.java 38 import static org.hamcrest.Matchers.notNullValue;
156 Assert.assertThat("test setup failed, no insets at root", insets, notNullValue());
158 dispatchedInsets, notNullValue());
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
ParsingSteps.java 48 import static org.hamcrest.core.IsNull.notNullValue;
175 assertThat(parameter.getType(), is(notNullValue()));
ExistenceOfParentNodeVerifier.java 35 import static org.hamcrest.Matchers.notNullValue;
50 assertThat(n + " has no parent set!", n.getParentNode().orElse(null), is(notNullValue()));
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/NormalApp/src/com/android/cts/normalapp/
ClientTest.java 21 import static org.hamcrest.CoreMatchers.notNullValue;
351 assertThat(testCursor, is(notNullValue()));
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 32 import static org.hamcrest.core.IsNull.notNullValue;
711 assertThat(beforeNode, notNullValue());
733 assertThat(afterNode, notNullValue());
    [all...]
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
Matchers.java 399 * <pre>assertThat(cheese, is(notNullValue()))</pre>
403 public static org.hamcrest.Matcher<java.lang.Object> notNullValue() {
404 return org.hamcrest.core.IsNull.notNullValue();
411 * <pre>assertThat(cheese, is(notNullValue(X.class)))</pre>
418 public static <T> org.hamcrest.Matcher<T> notNullValue(java.lang.Class<T> type) {
419 return org.hamcrest.core.IsNull.<T>notNullValue(type);
    [all...]
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
CameraErrorCollector.java 584 checkThat(msg, obj, CoreMatchers.notNullValue());
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
junit-4.8.1.jar 
  /external/libphonenumber/lib/
junit-4.8.1.jar 
  /external/owasp/sanitizer/lib/junit/
junit.jar 

Completed in 3649 milliseconds