springboot测试单元中@RunWith(SpringRunner.class)报错解决方法

springboot测试单元中@RunWith(SpringRunner.class)报错解决方法_第1张图片

解决办法:在pom.xml中要有下面两个依赖

        
            org.springframework.boot
            spring-boot-starter-test
            test
        

        
            junit
            junit
            test
        

 

你可能感兴趣的:(Java,Web)