I am able to run each @DataJpaTest
separately from eclipse.
My @DataJpaTest
is something like below:
@RunWith(SpringRunner.class)
@DataJpaTest
@Import(UserDataOnDemand.class)
@AutoConfigureTestDatabase(replace = Replace.NONE)
public class UserIntegrationTest {
......
}
Is there any way to run all @DataJpaTest
classes at once ?
You have two options really.