• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 Shadow1SampleTest {
8   @Parameters("a")
9   @Test
test1(String a)10   public void test1(String a) {
11     Assert.assertEquals("First", a);
12   }
13 
14 }
15