spring boot 测试的几种写法

2021-05-19 15:46:24 浏览数 (1)

  • 用testNG做测试
代码语言:javascript复制
代码语言:javascript复制
import org.testng.annotations.Test;
 
@SpringBootTest(classes = MyServiceTest.TestApplication.class, properties = {
 "spring.profiles.active=dev"}) public class MyServiceTest extends AbstractTransactionalTestNGSpringContextTests {
 
	    @Test(invocationCount = 10,threadPoolSize = 5)
    public void updateProcess() throws Exception {
       
        System.out.println("test");
  }

}



普通测试



@SpringBootTest(classes = SensiTest.TestApplication.class )
@ActiveProfiles("dev")
@RunWith(SpringRunner.class)public class SensiTest {
  
 //testing...
}
 

  发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/100426.html原文链接:                        

0 人点赞