我们可以借助测试组功能将多个组组合到TestNG中的单个Test中。
用组测试xml文件。
<?xml version = "1.0" encoding = "UTF-8"?> <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > <suite name = "Nhooo Test"> <test name = "Regression Cycle 1"> <groups> <run> <include name = "QuestionAnswer"/> </run> <run> <include name = "Jobs"/> </run> </groups> <classes> <class name = "TestParam" /> </classes> </test> </suite>
要从测试用例集合中运行一组测试用例,我们必须在testng xml文件中定义<groups>。在这里,testNG xml包含与单个Test相关联的多个组QuestionAnswer和Jobs。
@Test(groups={"QuestionAnswer"},{"Jobs"}) public void preparation(){ System.out.println("Preparation module is verified"); }
在Java类文件中,分组为QuestionAnswer和Jobs的测试方法与该测试方法相关联preparation()
。