测试类自动注入失败:@RunWith(SpringRunner.class)详解


https://blog.csdn.net/yinzitun7947/article/details/100031505
测试类自动注入失败:@RunWith(SpringRunner.class)详解

代码示例:

@RunWith(SpringRunner.class)
@SpringBootTest
public class ProjectFontControllerTest {

  • 1
  • 2
  • 3
  • 4
  • 5

使用此注解需依赖:

	    <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
   			<groupId>junit</groupId>
  			<artifactId>junit</artifactId>
   			<version>4.10</version>
   			<!--<scope>test</scope>-->
		</dependency>

   
   
   
  
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

因为SpringRunner.class继承了SpringJUnit4ClassRunner.class且没有进行任何修改
所以@RunWith(SpringRunner.class)基本等同于@RunWith(SpringJUnit4ClassRunner.class)

注解的作用:
让测试在Spring容器环境下执行。如测试类中无此注解,将导致service,dao等自动注入失败。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM