Here is the code:
@DataProvider(name = "DataSource")
public String dataProvider() {
String name = "ramesh";
return name;
}
@Test(dataProvider="DataSource")
public void wikiTest(String name) {
System.out.println(name);
}
I get the output as
SKIPPED: wikiTest
can anyone help me with this?
source
share