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

mockit.external.hamcrest.core.IsNull Maven / Gradle / Ivy

The newest version!
/*  Copyright (c) 2000-2006 hamcrest.org
 */
package mockit.external.hamcrest.core;

import mockit.external.hamcrest.*;

/**
 * Is the value null?
 */
public final class IsNull extends BaseMatcher
{
   public boolean matches(Object o)
   {
      return o == null;
   }

   public void describeTo(Description description)
   {
      description.appendText("null");
   }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy