com.fitbur.mockito.internal.creation.instance.Instantiator Maven / Gradle / Ivy
The newest version!
package com.fitbur.mockito.internal.creation.instance;
/**
* Provides instances of classes.
*/
public interface Instantiator {
/**
* Creates instance of given class
*/
T newInstance(Class cls) throws InstantiationException;
}