Class InjectingAnnotationEngine
- java.lang.Object
-
- org.mockito.internal.configuration.InjectingAnnotationEngine
-
- All Implemented Interfaces:
AnnotationEngine
public class InjectingAnnotationEngine extends java.lang.Object implements AnnotationEngine
-
-
Constructor Summary
Constructors Constructor Description InjectingAnnotationEngine()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method 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.
-
-
-
Method Detail
-
createMockFor
@Deprecated public java.lang.Object createMockFor(java.lang.annotation.Annotation annotation, java.lang.reflect.Field field)
Deprecated.Create a mock usingDefaultAnnotationEngine
- Specified by:
createMockFor
in interfaceAnnotationEngine
- Parameters:
annotation
- Annotationfield
- Field details- See Also:
DefaultAnnotationEngine
,AnnotationEngine.createMockFor(java.lang.annotation.Annotation, java.lang.reflect.Field)
-
process
public 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.This code process the test class and the super classes.
- First create Mocks, Spies, Captors.
- Then try to inject them.
- Specified by:
process
in interfaceAnnotationEngine
- Parameters:
clazz
- Not usedtestInstance
- The instance of the test, should not be null.- See Also:
AnnotationEngine.process(Class, Object)
-
injectMocks
public void injectMocks(java.lang.Object testClassInstance)
Initializes mock/spies dependencies for objects annotated with @InjectMocks for given testClassInstance.See examples in javadoc for
MockitoAnnotations
class.- Parameters:
testClassInstance
- Test class, usuallythis
-
-