Spring Boot项目中,新添加test类,使用@RunWith注解报错,肯定是项目中没有添加依赖。 解决办法: 1.pom.xml引入依赖 <!--添加junit环境的jar包--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test
Spring Boot整合Junit,@RunWith和@SpringBootTest的使用 1、在pom.xml添加junit启动器 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId></dependency> 2、编写测试类
[java] view plaincopy public class TestClass { @Test public void t1(){} } JUnit允许用户指定其它的单元测试执行类,只需要我们的测试执行类继承类org.junit.runners.BlockJUnit4ClassRunner就可以了,Spring的执行类SpringJUnit4Clas