文字列配列の 3 つのデータポイントと整数配列の 2 つのデータポイントがあります。
@DataPoint public static Integer[] xxx ={100,200};
@DataPoint public static Integer[] x ={-14,15};
@DataPoint public static String[] xx = new String[]{"de" ,"Y"};
@DataPoint public static String[] cityCode = new String[]{"de" ,"abc"};
@DataPoint public static String[] city = new String[]{"de" ,"dfg"};
@Theory public void xxx(String[] result ,Integer[] checkdt )
このテストケースを実行すると、文字列配列の 3 つのデータポイントが取得されますが、文字列配列の 2 つのデータポイントのみを使用したいのですが、2 つのデータポイントのみを使用するにはどうすればよいですか?