我正在使用JUnit4,我正在尝试设置一个可以用于多个相同类的测试(不重要的原因),但是我将多个java文件传递给测试并从那个i我试图在方法eg. list.add(new Object[]{testClass.class, testClass.class.methodName()});
中创建同时具有.class和方法名称的对象。如果您输入.class的名称和方法的名称完全一样(如在上面的示例)但是因为我想对许多不同的类执行此操作,我需要在循环中传递它们并且我使用以下代码list.add(new Object[]{currentFile.getClass(), currentFile.getClass().getMethod(addTwoNumbers,int, int)}
其中currentFile
是正在处理的当前文件.getMethod(addTwoNumbers,int, int)
addTwoNumbers是方法的名称,需要两个整数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)});
}
上做错了吗?
答案 0 :(得分:1)
我认为你需要首先使用ClassLoader加载文件,然后创建它,这样你就可以在类上使用反射。这是一篇类似的帖子,答案中有更多信息。 How to load an arbitrary java .class file from the filesystem and reflect on it?
以下是有关此内容的更多信息:
A Look At The Java Class Loader
Dynamic Class Loading and Reloading in Java
这是使用URLClassLoader
的快速示例// Create a File object on the root of the directory containing the class file
File file = new File("c:\\myclasses\\");
try {
// Convert File to a URL
URL url = file.toURL(); // file:/c:/myclasses/
URL[] urls = new URL[]{url};
// Create a new class loader with the directory
ClassLoader cl = new URLClassLoader(urls);
// Load in the class; MyClass.class should be located in
// the directory file:/c:/myclasses/com/mycompany
Class cls = cl.loadClass("com.mycompany.MyClass");
} catch (MalformedURLException e) {
} catch (ClassNotFoundException e) {
}
这个例子取自: