Home
last modified time | relevance | path

Searched refs:notNullValue (Results 1 – 9 of 9) sorted by relevance

/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
DIsNullTest.java7 import static org.hamcrest.core.IsNull.notNullValue;
14 private final Matcher<Object> notNullMatcher = notNullValue();
37 requiresStringMatcher(notNullValue(String.class)); in supportsStaticTyping()
DCombinableTest.java9 import static org.hamcrest.core.IsNull.notNullValue;
66 …Matcher<String> matcher = CombinableMatcher.both(equalTo("yellow")).and(notNullValue(String.class)… in picksUpTypeFromLeftHandSideOfExpression()
DAllOfTest.java10 import static org.hamcrest.core.IsNull.notNullValue;
46 is(notNullValue()), in supportsMixedTypes()
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
DIsNull.java41 public static Matcher<Object> notNullValue() { in notNullValue() method in IsNull
70 public static <T> Matcher<T> notNullValue(Class<T> type) { in notNullValue() method in IsNull
/external/junit/src/main/java/org/junit/
DAssume.java6 import static org.hamcrest.CoreMatchers.notNullValue;
73 assumeThat(asList(objects), everyItem(notNullValue())); in assumeNotNull()
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DCoreMatchers.java319 public static org.hamcrest.Matcher<java.lang.Object> notNullValue() { in notNullValue() method in CoreMatchers
320 return org.hamcrest.core.IsNull.notNullValue(); in notNullValue()
334 public static <T> org.hamcrest.Matcher<T> notNullValue(java.lang.Class<T> type) { in notNullValue() method in CoreMatchers
335 return org.hamcrest.core.IsNull.notNullValue(type); in notNullValue()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
DParsingSteps.java48 import static org.hamcrest.core.IsNull.notNullValue;
175 assertThat(parameter.getType(), is(notNullValue())); in thenLambdaInStatementInMethodInClassHasParametersWithNonNullType()
DExistenceOfParentNodeVerifier.java35 import static org.hamcrest.Matchers.notNullValue;
50 … assertThat(n + " has no parent set!", n.getParentNode().orElse(null), is(notNullValue())); in assertParentIsSet()
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
DMatchers.java403 public static org.hamcrest.Matcher<java.lang.Object> notNullValue() { in notNullValue() method in Matchers
404 return org.hamcrest.core.IsNull.notNullValue(); in notNullValue()
418 public static <T> org.hamcrest.Matcher<T> notNullValue(java.lang.Class<T> type) { in notNullValue() method in Matchers
419 return org.hamcrest.core.IsNull.<T>notNullValue(type); in notNullValue()