我正在使用 JUnit4 并且我正在尝试设置一个可用于多个相同类的测试(为什么它们都是一样的并不重要),但我正在将多个 java 文件传递给测试,并且我正在尝试在方法中创建同时具有 .class 和方法名称的对象eg. list.add(new Object[]{testClass.class, testClass.class.methodName()});
如果您完全按原样输入 .class 的名称和方法的名称(如上面的示例)但我想要对许多不同的类执行此操作我需要在循环中传递它们,我正在使用以下代码正在处理的当前文件在list.add(new Object[]{currentFile.getClass(), currentFile.getClass().getMethod(addTwoNumbers,int, int)}
哪里, addTwoNumbers 是方法的名称,它需要两个整数,但我收到以下错误currentFile
.getMethod(addTwoNumbers,int, int)
eg. addTwoNumbers(int one, int two)
'.class' expected
'.class' expected
unexpected type
required: value
found: class
unexpected type
required: value
found: class
这是我的完整代码
CompilerForm compilerForm = new CompilerForm();
RetrieveFiles retrieveFiles = new RetrieveFiles();
@RunWith(Parameterized.class)
public class BehaviorTest {
@Parameters
public Collection<Object[]> classesAndMethods() throws NoSuchMethodException {
List<Object[]> list = new ArrayList<>();
List<File> files = new ArrayList<>();
final File folder = new File(compilerForm.getPathOfFileFromNode());
files = retrieveFiles.listFilesForFolder(folder);
for(File currentFile: files){
list.add(new Object[]{currentFile.getClass(), currentFile.getClass().getMethod(addTwoNumbers,int, int)});
}
return list;
}
private Class clazz;
private Method method;
public BehaviorTest(Class clazz, Method method) {
this.clazz = clazz;
this.method = method;
}
有谁看到我在这条线上做错了list.add(new Object[]{currentFile.getClass(), currentFile.getClass().getMethod(addTwoNumbers,int, int)});
}
什么?