public class InjectingAnnotationEngine extends java.lang.Object implements AnnotationEngine
| Constructor and Description |
|---|
InjectingAnnotationEngine() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
createMockFor(java.lang.annotation.Annotation annotation,
java.lang.reflect.Field field)
Deprecated.
|
void |
injectMocks(java.lang.Object testClassInstance)
Initializes mock/spies dependencies for objects annotated with
@InjectMocks for given testClassInstance.
|
void |
process(java.lang.Class<?> clazz,
java.lang.Object testInstance)
Process the fields of the test instance and create Mocks, Spies, Captors and inject them on fields
annotated @InjectMocks.
|
@Deprecated
public java.lang.Object createMockFor(java.lang.annotation.Annotation annotation,
java.lang.reflect.Field field)
DefaultAnnotationEnginecreateMockFor in interface AnnotationEngineannotation - Annotationfield - Field detailsDefaultAnnotationEngine,
AnnotationEngine.createMockFor(java.lang.annotation.Annotation, java.lang.reflect.Field)public void process(java.lang.Class<?> clazz,
java.lang.Object testInstance)
This code process the test class and the super classes.
process in interface AnnotationEngineclazz - Not usedtestInstance - The instance of the test, should not be null.AnnotationEngine.process(Class, Object)public void injectMocks(java.lang.Object testClassInstance)
See examples in javadoc for MockitoAnnotations class.
testClassInstance - Test class, usually this