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?
source share