我正在尝试从文件中读取数据并使用数据来测试过程。甚至要测试的proc也是根据文件的内容确定的。
Sample.txt是我从中读取数据的文件,该文件包含以下数据
testproc=sample_check('N')
output=yes
type=function
testproc=sample_check('N')
output=yes
type=function
testproc=sample_check('N')
output=yes
type=function
以下程序尝试读取文件并将其内容填充到二维字符串数组中。
@RunWith(value = Parameterized.class)
public class Testdata extends Testdb {
public String expected;
public String actual;
@Parameters
public static Collection<String[]> getTestParameters() {
String param[][] = new String [3][3];
String temp[] = new String [3];
int i = 0;
int j = 0;
try{
BufferedReader br = new BufferedReader(new FileReader("sample.txt"));
String strLine;
String methodkey = "testproc";
String methodtypekey = "type";
String methodoutputkey = "output";
String method = "";
String methodtype = "";
String methodoutput = "";
//Read File Line By Line
while ((strLine = br.readLine()) != null)
{
StringTokenizer st = new StringTokenizer(strLine, "=");
while(st.hasMoreTokens())
{
String key = st.nextToken();
String val = st.nextToken();
if (key.trim().equalsIgnoreCase(methodkey))
{
method = val.trim();
temp[j] = "SELECT " + method + " FROM dual";
j++;
}
else if (key.trim().equalsIgnoreCase(methodoutputkey))
{
methodoutput = val.trim();
temp[j] = methodoutput;
j++;
}
else if (key.trim().equalsIgnoreCase(methodtypekey))
{
methodtype = val.trim();
if (methodtype.trim().equalsIgnoreCase("function"))
{
System.out.println(i + " " + method);
param[i] = temp;
i++;
j = 0;
}
}
}
}
}
catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
return Arrays.asList(param) ;
}
public Testdata(String[] par) {
this.expected = par[0];
this.actual = par[1];
}
@Test
public void test_file_data() //throws java.io.IOException
{
testString("Output should be"+expected , expected, actual);
}
}
我收到错误 java.lang.IllegalArgumentException:参数数量错误
testString是一种连接数据库的方法,用于检查实际值是否与预期结果一致。这需要两个字符串值作为参数。
我的问题是应该怎么做 return Arrays.asList(param) 和方法 public Testdata(String [] par) 看起来像?
我测试使用它并且它工作正常但是因为我从一个文件读取,我想使用一个需要使用返回Arrays.asList返回的数组
return Arrays.asList(new String[][]{
{ "yes", "SELECT sample_check('N') FROM dual"},
{ "yes", "SELECT sample_check('N') FROM dual"},
{ "yes", "SELECT sample_check('N') FROM dual"}
}) ;
}
public Testdata(String expected,
String actual) {
this.expected = expected;
this.actual = actual;
}
关于让这项工作有任何建议吗?
答案 0 :(得分:4)
你的构造函数是错误的。您需要与String[]
public Testdata(String[] par) {
this.expected = par[0];
this.actual = par[1];
}
这应该是:
public Testdata(String expected, String actual, String somethingElse) {
this.expected = expected;
this.actual = actual;
}
例如,要测试Fibonacci函数,请写:
@RunWith(Parameterized.class)
public class FibonacciTest {
@Parameters
public static List<Object[]> data() {
return Arrays.asList(new Object[][] {
{ 0, 0 }, { 1, 1 }, { 2, 1 }, { 3, 2 }, { 4, 3 }, { 5, 5 }, { 6, 8 }
});
}
private int fInput;
private int fExpected;
public FibonacciTest(int input, int expected) {
fInput= input;
fExpected= expected;
}
@Test
public void test() {
assertEquals(fExpected, Fibonacci.compute(fInput));
}
}
FibonacciTest的每个实例都将使用 双参数构造函数和@Parameters中的数据值 方法