SpringBoot 整合Junit(单元测试)
2020-05-14 本文已影响0人
索性流年
pom添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
在src/test/java下建立测试类
@RunWith(SpringRunner.class)//设置启动器
@SpringBootTest(classes={Application.class})//指定启动类
//@SpringApplicationConfiguration(classes=Application.class)//1.4.0之前版本
public class ApplicationTests{
@Test
public void test1(){
//..测试内容
}
@Test
public void testAsser(){
//JUnit4.1.2后Assert过时,TestCase.assertEquals成为替代
//(期望结果,条件语句)
//("提示",true,条件语句)
TestCase.assertEquals(1, 1);
}
@Before
public testBefore(){
//测试前执行
}
@After
public testAfter(){
//测试结束后
}
}