org.objenesis.instantiator.NullInstantiator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
package org.objenesis.instantiator;
/**
* The instantiator that always return a null instance
*
* @author Henri Tremblay
*/
public class NullInstantiator implements ObjectInstantiator {
/**
* @return Always null
*/
public Object newInstance() {
return null;
}
}