org.mockito.internal.creation.instance.Instantiator 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.mockito.internal.creation.instance;
/**
* Provides instances of classes.
*/
public interface Instantiator {
/**
* Creates instance of given class
*/
T newInstance(Class cls) throws InstantationException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy