Spring web application integration test suite to download

I have a set of integration tests containing

@RunWith(SpringJUnit4ClassRunner.class) @SpringApplicationConfiguration(classes = SpringBootApp.class) @WebIntegrationTest(randomPort = true) 

The problem is that the application starts and stops for each test class. In any case, can I run the application once, run all the integration tests and stop?

+5
source share

Source: https://habr.com/ru/post/1257405/


All Articles