代码语言: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");
}
@SpringBootApplication
@ComponentScan(value = {
"com.my.foo"})
public static class TestApplication {
}
}
普通测试
代码语言:javascript复制@SpringBootTest(classes = SensiTest.TestApplication.class )
@ActiveProfiles("dev")
@RunWith(SpringRunner.class)
public class SensiTest {
//testing...
@SpringBootApplication
@ComponentScan(value = {
"com.my.foo"})
public static class TestApplication {
}
}
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/100425.html原文链接: