use of org.eclipse.tycho.surefire.provider.spi.TestFrameworkProvider in project tycho by eclipse.
the class ProviderHelperTest method testSelectJunit3.
public void testSelectJunit3() throws Exception {
TestFrameworkProvider provider = providerHelper.selectProvider(classPath("org.junit:3.8"), new Properties(), null);
assertEquals(JUnit3Provider.class, provider.getClass());
}
use of org.eclipse.tycho.surefire.provider.spi.TestFrameworkProvider in project tycho by eclipse.
the class ProviderHelperTest method testSelectJunit4WithJunit3Present.
public void testSelectJunit4WithJunit3Present() throws Exception {
TestFrameworkProvider provider = providerHelper.selectProvider(classPath("org.junit:3.8.1", "org.junit:4.8.1"), new Properties(), null);
assertEquals(JUnit4Provider.class, provider.getClass());
}
Aggregations