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

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

There is a newer version: 2.0.2-beta
Show newest version
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.configuration;

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;

import org.mockito.MockitoAnnotations;

/**
 * Configures mock creation logic behind @Mock annotations
 * 

* If you are interested then see implementations or source code of {@link MockitoAnnotations#initMocks(Object)} */ public interface AnnotationEngine { /** * Usually the implementation checks the annotation * and then creates a mock object for specified field. *

* You don't need to set the mock on the field. Mockito does it for you. * If in doubts look for implementations of this interface. *

* For annotations that you don't care about just return null - then Mockito will not initialize this field * * @param annotation annotation on the field, for example @Mock * @param field field to create mock object for * @return mock created for specified field. Can be null - then Mockito will not initialize the field */ Object createMockFor(Annotation annotation, Field field); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy