Home | History | Annotate | Download | only in dataprovider
      1 package test.dataprovider;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 
      6 /**
      7  * This class/interface
      8  */
      9 public class InnexistentDataProvider {
     10   @Test(dataProvider="doesnotexist")
     11   public void testMethod(String s)
     12   {
     13     // doesn't matter
     14   }
     15 }
     16