Home | History | Annotate | Download | only in parameters
      1 package test.parameters;
      2 
      3 import org.testng.Assert;
      4 import org.testng.annotations.Parameters;
      5 import org.testng.annotations.Test;
      6 
      7 public class Shadow2SampleTest {
      8   @Parameters("a")
      9   @Test
     10   public void test2(String a) {
     11     Assert.assertEquals("Second", a);
     12   }
     13 
     14 }
     15