org.mockito.junit.MockitoJUnit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
package org.mockito.junit;
/**
* The JUnit rule can be used instead of {@link org.mockito.runners.MockitoJUnitRunner}. See {@link MockitoRule}.
*
* @since 1.10.17
*/
public class MockitoJUnit {
/**
* Creates rule instance that initiates @Mocks
* See {@link MockitoRule}.
*
* @return the rule instance
*/
public static MockitoRule rule() {
return new MockitoJUnitRule();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy