• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.dataprovider;
2 
3 import org.testng.Assert;
4 import org.testng.annotations.DataProvider;
5 import org.testng.annotations.Test;
6 
7 public class VarArgsDataProviderTest {
8   private static final String[] S = new String[] { "a", "b", "c" };
9 
10   @DataProvider
data()11   public Object[][] data() {
12     return new Object[][] { S };
13   }
14 
15   @Test(dataProvider = "data")
testWithTwoEntriesInTestToolWindow(String... o)16   public void testWithTwoEntriesInTestToolWindow(String... o) {
17     Assert.assertEquals(o, S);
18   }
19 }
20