01: package test.dataprovider; 02: 03: import org.testng.annotations.Test; 04: 05: /** 06: * This class/interface 07: */ 08: public class InnexistentDataProvider { 09: @Test(dataProvider="doesnotexist") 10: public void testMethod(String s) { 11: // doesn't matter 12: } 13: }