33 lines
765 B
Java
33 lines
765 B
Java
|
package sample.testnomockito;
|
||
|
|
||
|
import org.junit.Test;
|
||
|
import org.junit.runner.RunWith;
|
||
|
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.context.ApplicationContext;
|
||
|
import org.springframework.test.context.junit4.SpringRunner;
|
||
|
|
||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||
|
|
||
|
/**
|
||
|
* Tests that {@code ResetMocksTestExecutionListener} and
|
||
|
* {@code MockitoTestExecutionListener} gracefully degrade when Mockito is not on the
|
||
|
* classpath.
|
||
|
*
|
||
|
* @author Madhura Bhave
|
||
|
*/
|
||
|
@RunWith(SpringRunner.class)
|
||
|
public class SampleTestNoMockitoApplicationTests {
|
||
|
|
||
|
// gh-7065
|
||
|
|
||
|
@Autowired
|
||
|
private ApplicationContext context;
|
||
|
|
||
|
@Test
|
||
|
public void contextLoads() throws Exception {
|
||
|
assertThat(this.context).isNotNull();
|
||
|
}
|
||
|
|
||
|
}
|