blob: 689cc15acc5dad604c86be176680122d202fa4df [file] [log] [blame]
package test.dataprovider;
import org.testng.annotations.Test;
/**
* This class/interface
*/
public class InnexistentDataProvider {
@Test(dataProvider="doesnotexist")
public void testMethod(String s)
{
// doesn't matter
}
}