我正在Junit
进行一些Spring
测试,在我的测试类中,我必须使用一些测试数据。
我搜索了谷歌,有很多方法,如Parameterized
班级,TestNG Data
提供商,[junit-dataprovider][1]
等。
我尝试使用TestNG数据提供程序,并为我的测试数据创建了一个简单的类,如下所示:
@ContextConfiguration(classes = TestConfiguration.class)
public class TestNgDataProvider extends AbstractTestNGSpringContextTests {
private static final Logger LOGGER = LoggerFactory.getLogger(TestNgDataProvider.class);
@DataProvider(name = "invoices")
public static Object[][] dataProviderMethod() {
return new Object[][]{
{"201628JP00006097", "201628JP00006098"},
};
}
@Test(dataProvider = "invoices")
public void testParameterMethod(String invoiceId1, String invoiceId2) {
LOGGER.info("Start test");
LOGGER.info("Test data is: {}, {}", invoiceId1, invoiceId2);
}
}
但是现在当我尝试在我的测试类中使用此提供程序时,我得到一个exception
说:
java.lang.Exception :没有可运行的方法
我的测试类正在使用runWith SpringJUnit4ClassRunner
。任何人都知道如何解决这个问题。
import org.junit.After;
import org.junit.Before;
import org.junit.runner.RunWith;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.testng.annotations.Test;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(TestConfiguration.class)
public class TestLax extends LaxBaseTest {
@Test (dataProvider="invoices", dataProviderClass=TestNgDataProvider.class)
public void testLarsTamara(String invoiceId1, String invoiceId2) throws Exception {
LOGGER.info("Test data is: {}, {}", invoiceId1, invoiceId2);
File file = larsRemote.runLars();
readAndVerifyLarsFile(file);
}
}
答案 0 :(得分:0)
当然你不能!
JUnit无法运行TestNG测试或功能。 但恰恰相反,TestNG能够运行junit测试。
只需使用testng方式运行测试即可。