Home | History | Annotate | Download | only in configuration

Lines Matching refs:testInstance

36      * @param testInstance The instance of the test, should not be null.
40 public void process(Class<?> clazz, Object testInstance) {
41 processIndependentAnnotations(testInstance.getClass(), testInstance);
42 processInjectMocks(testInstance.getClass(), testInstance);
45 private void processInjectMocks(final Class<?> clazz, final Object testInstance) {
48 injectMocks(testInstance);
53 private void processIndependentAnnotations(final Class<?> clazz, final Object testInstance) {
57 delegate.process(classContext, testInstance);
59 spyAnnotationEngine.process(classContext, testInstance);