我编写了一个自定义的 JUnit 运行程序,我希望它成为 eclipse 插件的一部分,该插件将使用此运行程序启动测试,而无需将 @RunWith 注释应用于类。我设法使用 org.eclipse.debug.ui.launchShortcuts 扩展点在“运行方式”上下文菜单下获得了一个附加项目。但是,我不确定如何使用我的自定义运行程序调用测试。
问问题
1350 次
1 回答
3
所以我想出了一种方法来做我想做的事。但是,它似乎有点hacky。但是,我想我会在这里发布答案,以防其他人遇到同样的问题。
首先,您必须像这样注册一个junit类型:
<extension point="org.eclipse.jdt.junit.internal_testKinds">
<kind
id="my.junit.kind"
displayName="Your Kind Name"
finderClass="org.eclipse.jdt.internal.junit.launcher.JUnit4TestFinder"
loaderPluginId="org.eclipse.jdt.junit4.runtime"
loaderClass="your.test.loader.MyLoaderClass">
<runtimeClasspathEntry pluginId="org.eclipse.jdt.junit4.runtime" />
<runtimeClasspathEntry pluginId="org.eclipse.jdt.junit.core" />
<runtimeClasspathEntry pluginId="org.eclipse.jdt.junit.runtime"/>
</kind>
</extension>
在 xml 中,您必须指定一个自定义实现,org.eclipse.jdt.internal.junit.runner.ITestLoader
该实现反过来返回org.eclipse.jdt.internal.junit.runner.ITestReference
. 核心部分是 ITestReference 的实现,因为这是您创建自定义 JUnit 运行器实例的地方。
public class MyTestReference extends JUnit4TestReference
{
public MyTestReference(final Class<?> p_clazz, String[] p_failureNames)
{
super(new Request()
{
@Override
public Runner getRunner()
{
return new MyCustomRunner(p_clazz);
}
}, p_failureNames);
}
...
}
最后,您必须将其与适当设置种类的启动快捷方式链接
public class MyJunitLaunchShortcut extends JUnitLaunchShortcut
{
@Override
protected ILaunchConfigurationWorkingCopy createLaunchConfiguration(IJavaElement p_element) throws CoreException
{
ILaunchConfigurationWorkingCopy config = super.createLaunchConfiguration(p_element);
config.setAttribute(JUnitLaunchConfigurationConstants.ATTR_TEST_RUNNER_KIND, "my.junit.kind");
return config;
}
}
这确实使用了一堆内部类,所以可能有更好的方法。但这似乎有效。
于 2012-11-13T01:47:34.737 回答