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

org.mockito.configuration.MockitoMockAnnotationProcessor Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package org.mockito.configuration;

import org.mockito.Mock;
import org.mockito.MockSettings;
import org.mockito.Mockito;
import org.mockito.internal.configuration.FieldAnnotationProcessor;
import org.mockito.internal.configuration.MockAnnotationProcessor;

import java.lang.reflect.Field;

/**
 * Overrides {@link MockAnnotationProcessor} to manage Overlay types mocking using {@link Mock} from
 * Mockito.
 */
class MockitoMockAnnotationProcessor implements FieldAnnotationProcessor {
    public Object process(Mock annotation, Field field) {
        MockSettings mockSettings = Mockito.withSettings();
        if (annotation.extraInterfaces().length > 0) { // never null
            mockSettings.extraInterfaces(annotation.extraInterfaces());
        }
        if ("".equals(annotation.name())) {
            mockSettings.name(field.getName());
        } else {
            mockSettings.name(annotation.name());
        }

        // see @Mock answer default value
        mockSettings.defaultAnswer(annotation.answer().get());
        return Mockito.mock(MockAnnotationProcessorHelper.getTypeToMock(field), mockSettings);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy