23

我需要在一组 eclipse 插件测试中使用 JUnit 4.4(或更新版本),但我遇到了以下问题:

使用 springsource 中的 junit 4.4 或 4.5 包(junit44junit45)运行时未检测到测试。可以用 eclipse 获得的 org.junit4 包提供了 junit 4.3(从 Ganymead / Eclipse 3.4 开始)。org.junit4 包确实可以识别和运行测试,但它与最新版本的 JMock 不兼容,我需要使用模拟库。

这是一个示例测试:

package testingplugin;

import static org.junit.Assert.*;
import org.junit.Test;

public class ActivatorTest {
   @Test
   public final void testDoaddTest() {
      fail("Not yet implemented");
   }
}

运行此测试时,我收到以下异常:

java.lang.Exception: No runnable methods
    at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:33)
    at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
    at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
    at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:45)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
    at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:62)
    at org.eclipse.pde.internal.junit.runtime.CoreTestApplication.run(CoreTestApplication.java:23)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:574)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:195)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1212)

但是,如果我将项目依赖项从 com.springsource.org.junit 切换到 org.junit4,则测试运行并失败(如预期的那样)。

我在 Eclipse 中将测试作为 JUnit 插件测试运行,具有以下程序参数:

-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}

在启动期间选择了以下插件(由我选择,然后我使用“添加所需的插件”来获取其余的依赖项。):

Workspace:
   testingPlugin
Target Platform:
   com.springsource.org.hamcrest.core (1.1.0)
   com.springsource.org.junit (4.5.0)
   ....and a bunch of others... (nothing related to testing was auto-selected)

这是我的清单.MF:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: TestingPlugin Plug-in
Bundle-SymbolicName: testingPlugin
Bundle-Version: 1.0.0
Bundle-Activator: testingplugin.Activator
Import-Package: org.osgi.framework;version="1.3.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: com.springsource.org.junit;bundle-version="4.5.0"

将最后一行切换为:

Require-Bundle: org.junit4;bundle-version="4.3.1"

并在启动时将选定的插件更新为:

Workspace:
   testingPlugin
Target Platform:
   org.junit4 (4.3.1)
   ...bunches of auto-selected bundles... (again, nothing else test related)

使测试正常运行(但使用错误的 junit 版本)。

4

9 回答 9

4

根据我的经验,如果包含插件测试的插件不依赖于 junit,就会发生这种情况。将 junit 4.4 依赖项添加到我的 MANIFEST.MF 文件后,错误消失并执行了所有测试。junit 依赖项应该是可选的,因为插件通常只在测试代码中需要它。

于 2009-06-02T12:42:47.347 回答
2

我现在无法测试这个,因为我没有方便的 Eclipse 3.4 安装,但是我不久前在(我认为)IntelliJ IDEA 7.0.x 中遇到了类似的问题,解决方法是明确指定一个测试亚军。

使用 JUnit 4.5:

import org.junit.runners.JUnit4;

@RunWith(JUnit4.class)
public class ActivatorTest {
    //...
}

如果这不起作用,您可能会获得更大的成功org.junit.runners.BlockJUnit4ClassRunner

对于 JUnit 4.4,我会尝试org.junit.internal.runners.JUnit4ClassRunner

编辑:不太确定这com.springsource.部分,因为我不使用 Springsource。从您的问题来看,springsource 似乎将 JUnit 重新打包,com.springsource.org.junit但您只org.junit在代码中使用,所以我会坚持下去。

于 2008-12-11T08:44:52.077 回答
1

我想知道您是否可能需要从 com.springsource.org.junit 而不是从 org.junit 导入 @Test 标记。

沃尔克

于 2009-01-30T08:03:46.750 回答
1

I had some similar sounding problems with jMock, JUnit & Eclipse recently, although admittedly not with plugin tests.

I'm not sure if it's relevant, but I got it all working with the following versions :-

  • jmock-2.5.1.jar
  • hamcrest-core-1.1.jar
  • hamcrest-library-1.1.jar
  • jmock-junit4-2.5.1.jar

I also found I had to use the JMock test runner like this :-

  import org.junit.Test;
  import org.junit.runner.RunWith;

  import org.jmock.Mockery;
  import org.jmock.Expectations;
  import org.jmock.integration.junit4.JUnit4Mockery;
  import org.jmock.integration.junit4.JMock;

  @RunWith(JMock.class)
  public class PublisherTest {

    Mockery context = new JUnit4Mockery();

    @Test 
    public void oneSubscriberReceivesAMessage() {
于 2009-02-06T23:18:20.613 回答
0

我不知道它是哪个版本的 JUnit,但要成功找到测试,测试方法名称必须以单词“ test ”开头。

在较新的版本中,您可以简单地使用 @Test 标记测试,对我来说,它适用于以下组合:

import static junit.framework.Assert.*;
...
@Test
    public void testDummy() throws Exception
于 2008-11-04T08:26:46.113 回答
0

ActivatorTest 需要扩展 TestCase

于 2008-11-25T08:25:50.000 回答
0

也许您的 JUnit 包在 MANIFEST.MF 中缺少一个条目:

动态导入包:*

这是从其他包加载类的强制性要求。

贝博

于 2008-11-25T08:05:35.360 回答
0

@RunWith(Suite.class) @SuiteClasses( { UserServiceTest.class,ABCServiceTest.class })

公共类 AllTestSuite {

公共静态测试套件(){

     return new JUnit4TestAdapter(AllTestSuite .class);
 }

}

于 2009-05-21T10:05:28.873 回答
0

我认为spring测试框架不兼容junit 4.4+

于 2009-05-21T11:25:28.760 回答