
ext.test4j.hamcrest.core.IsNull Maven / Gradle / Ivy
/* Copyright (c) 2000-2010 hamcrest.org
*/
package ext.test4j.hamcrest.core;
import static ext.test4j.hamcrest.core.IsNot.not;
import ext.test4j.hamcrest.BaseMatcher;
import ext.test4j.hamcrest.Description;
import ext.test4j.hamcrest.Factory;
import ext.test4j.hamcrest.Matcher;
/**
* Is the value null?
*/
public class IsNull extends BaseMatcher {
public boolean matches(Object o) {
return o == null;
}
public void describeTo(Description description) {
description.appendText("null");
}
/**
* Matches if value is null.
*/
@Factory
public static Matcher
© 2015 - 2025 Weber Informatics LLC | Privacy Policy