3
JUnit 4.12とjunit-vintage-engine(JUnit 5)はSpring Framework 4.3.xと一緒に使用できますか? junit-jupiter-apiとjunit-jupiter-engine(JUnit 5の両方)も使用できますか?これは、ヴィンテージのエンジンで実行することができますJUnit 5とSpring Framework 4.3.x
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class ExampleIT {
@Test
public void test() {
}
}
: