SpringBoot2.X @SpringBootTest单元测试

最近对单元测试注释有些遗忘,这里记录一下。

1、介绍

那么先简单说一下为什么要写测试用例 :

  1. 可以避免测试点的遗漏,为了更好的进行测试,可以提高测试效率
  2. 可以自动测试,可以在项目打包前进行测试校验
  3. 可以及时发现因为修改代码导致新的问题的出现,并及时解决

2、引入相关依赖

<!--springboot程序测试依赖,如果是自动创建项目默认添加-->
     <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-test</artifactId>
         <scope>test</scope>
     </dependency>

3、使用

我们发现 SpringRunner 底层使用的是 JUnit

Junit这种老技术,相信很多人都相当的熟悉了,SpringBoot 2.X 默认使用Junit4
接下来我们简单说一下在SpringBoot 中的使用吧@RunWith(SpringRunner.class)
@SpringBootTest(classes={Application.class})// 指定启动类
//@RunWith(SpringJUnit4ClassRunner.class)
//@SpringBootTest
@WebAppConfiguration
//@Ignore("should manual test")
//@SpringApplicationConfiguration(classes = Application.class)// 1.4.0 前版本

public class ApplicationTests {
    @Test
    public void testOne(){
      System.out.println(“test hello 1”);
    }

    @Test
    public void testTwo(){
        String sendfile = System.getProperty("sendfile");
        if (!sendfile.isEmpty()) {
            System.out.println("test hello 2");
            TestCase.assertEquals(1, 1);
        }
    }

    @Before
    public void testBefore(){
        System.out.println("before");
    }

    @After
    public void testAfter(){
        System.out.println("after");
    }
}

ok, 以上就是我们编写的几个简单的测试用例

4、Junit基本注解介绍

*`@BeforeClass`*   在所有测试方法前执行一次,一般在其中写上整体初始化的代码 

*`@AfterClass`*      在所有测试方法后执行一次,一般在其中写上销毁和释放资源的代码 

*`@Before`*   在每个测试方法前执行,一般用来初始化方法(比如我们在测试别的方法时,类中与其他测试方法共享的值已经被改变,为了保证测试结果的有效性,我们会在@Before注解的方法中重置数据) 

*`@After`*  在每个测试方法后执行,在方法执行完成后要做的事情 

*`@Test(timeout = 1000)`* 测试方法执行超过1000毫秒后算超时,测试将失败 
*`@Test(expected = Exception.class)`* 测试方法期望得到的异常类,如果方法执行没有抛出指定的异常,则测试失败 
*`@Ignore(“not ready yet”)`*        执行测试时将忽略掉此方法,如果用于修饰类,则忽略整个类 

 *`@Test `*  编写一般测试用例

 *`@RunWith`*    在JUnit中有很多个Runner,他们负责调用你的测试代码,每一个Runner都有各自的特殊功能,你要根据需要选择不同的Runner来运行你的测试代码。 

如果我们只是简单的做普通Java测试,不涉及Spring Web项目,你可以省略@RunWith注解,这样系统会自动使用默认Runner来运行你的代码。
以上就是我们再SpringBoot2.X 中的测试过程示例( 当然也是用 SpringBoot 1.X )

 

5、运行

5.1、一般运行

mvn test

5.2、指定运行

mvn test -Dtest=ApplicationTests#testOne

5.3、带参数运行

mvn test -Dtest=ApplicationTests#testOne -Dsendfile=1.zip

 

参考:

https://blog.csdn.net/fxbin123/article/details/80617754

https://blog.csdn.net/limenghua9112/article/details/79694849

上一篇:解决在springboot测试中@value 获取server.port=-1情况


下一篇:使用@ContextConfiguration替换@SpringBootTest