I have a base test class for my tests which does the initialisation work before each test.
Here is the code
public class BaseTestParameters {
MyObj myObj;
@DataProvider(name = "apiType")
public static Object[][] createData() {
return new Object[][] {{"type", "1"},{"type","2"}};
}
@BeforeMethod()
@Factory(dataProvider = "apiType")
public void setup(String type,String param) throws Exception {
myObj = createMyObject(param);
}
}
All my test classes extend this base class and they use the myObj
for the tests.
myObj
has two different ways of creation (depending on param).
All the tests will run twice . One with each way of constituting myObj
.
How do I enable this scenario ?
Using @Factory
annotation means I need to return Object[]
from that method, but I don't have to return any test classes from that method.
You can use
@Parameters
annotation, but you have to specify values intestng,xml
it means you have to have separatetestng.xml
for each set of parameters.Here is example:
AppTest.java
testng.xml