You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
764 B
32 lines
764 B
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 SampleTestNoMockitoApplicationTest { |
|
|
|
// gh-7065 |
|
|
|
@Autowired |
|
private ApplicationContext context; |
|
|
|
@Test |
|
public void contextLoads() throws Exception { |
|
assertThat(this.context).isNotNull(); |
|
} |
|
|
|
}
|
|
|