All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nablarch.test.NullMatcher Maven / Gradle / Ivy

The newest version!
package nablarch.test;

import org.hamcrest.BaseMatcher;
import org.hamcrest.Description;

/**
 * NullにマッチするMatcherクラス。
 *
 * @param  比較するオブジェクトの型
 */
public class NullMatcher extends BaseMatcher {

    /** {@inheritDoc} */
    public boolean matches(Object o) {
        return o == null;
    }

    /** {@inheritDoc} */
    public void describeTo(Description description) {
        description.appendValue(null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy