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

org.powermock.api.mockito.internal.mockcreation.MockCreator Maven / Gradle / Ivy

package org.powermock.api.mockito.internal.mockcreation;

import java.lang.reflect.Method;

/**
 * An implementer of interface is reasonable for creating of an mocked instance of specific type.
 */
public interface MockCreator {
     T createMock(Class type, boolean isStatic, boolean isSpy, Object delegator, org.mockito.MockSettings mockSettings, Method... methods);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy