Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T11:28:18Z http://stackoverflow.com/feeds/question/251791 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de 11 Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? rcreswick 2008-10-30T21:10:11Z 2009-06-22T21:05:58Z <p>I need to use JUnit 4.4 (or newer) in a set of eclipse plugin tests, but I've run into the following problem:</p> <p>Tests are not detected when running with the junit 4.4 or 4.5 bundles from springsource ([junit44] and [junit45]). The org.junit4 bundle that can be obtained with eclipse supplies junit 4.3 (as of Ganymead / Eclipse 3.4). The org.junit4 bundle <em>does</em> work in that it identifies and runs the tests, but it is not compatible with the latest versions of JMock, and I need to use a mocking library.</p> <p>Here is a sample test:</p> <pre><code>package testingplugin; import static org.junit.Assert.*; import org.junit.Test; public class ActivatorTest { @Test public final void testDoaddTest() { fail("Not yet implemented"); } } </code></pre> <p>When running this test, I receive the following exception:</p> <pre><code>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) </code></pre> <p>However, if I switch the project dependencies from com.springsource.org.junit to org.junit4, then the test runs and fails (as expected).</p> <p>I am running the test as a JUnit Plug-in Test in Eclipse, with the following program arguments:</p> <p>-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}</p> <p>The following plug-ins selected during launch (selected by me, then I used "add required plugins" to get the rest of the dependencies.):</p> <pre><code>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) </code></pre> <p>Here is my MANIFEST.MF:</p> <pre><code>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" </code></pre> <p>Switching the last line to:</p> <pre><code>Require-Bundle: org.junit4;bundle-version="4.3.1" </code></pre> <p>And updating the selected plugins at launch to:</p> <pre><code>Workspace: testingPlugin Target Platform: org.junit4 (4.3.1) ...bunches of auto-selected bundles... (again, nothing else test related) </code></pre> <p>Causes the test to run properly (but with the wrong version of junit).</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/261242#261242 0 Answer by Drejc for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? Drejc 2008-11-04T08:26:46Z 2008-11-04T08:26:46Z <p>I don't know which version of JUnit it was, but to succesfully find test the test methods name must start with the word "<strong>test</strong>".</p> <p>In newer version you can simply mark test with @Test, for me it works in this combination:</p> <pre><code>import static junit.framework.Assert.*; ... @Test public void testDummy() throws Exception </code></pre> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/316645#316645 0 Answer by Bebbo for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? Bebbo 2008-11-25T08:05:35Z 2008-11-25T08:05:35Z <p>Maybe your JUnit bundle is missing an entry in the MANIFEST.MF:</p> <p>Dynamic-Import-Package: *</p> <p>This is mandatory to load classes from other bundles.</p> <p>Bebbo</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/316689#316689 0 Answer by shsmurfy for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? shsmurfy 2008-11-25T08:25:50Z 2008-11-25T08:25:50Z <p>ActivatorTest needs to extend TestCase</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/358705#358705 1 Answer by Thomas Dufour for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? Thomas Dufour 2008-12-11T08:44:52Z 2008-12-11T09:02:32Z <p>I cannot test this right now as I don't have an Eclipse 3.4 installation handy, but I've run across a similar problem a while ago in (I think) IntelliJ IDEA 7.0.x, and a workaround was to explicitly specify a test runner. </p> <p>With JUnit 4.5:</p> <pre><code>import org.junit.runners.JUnit4; @RunWith(JUnit4.class) public class ActivatorTest { //... } </code></pre> <p>If this does not work you may have more success with <code>org.junit.runners.BlockJUnit4ClassRunner</code></p> <p>For JUnit 4.4 I would try <code>org.junit.internal.runners.JUnit4ClassRunner</code></p> <p>EDIT : not too sure about the <code>com.springsource.</code> part as I don't use Springsource. From your question it seems that springsource repackages JUnit under <code>com.springsource.org.junit</code> but you use just <code>org.junit</code> in your code so I'll stick with that.</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/494851#494851 1 Answer by vs for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? vs 2009-01-30T08:03:46Z 2009-01-30T08:03:46Z <p>I'm wondering whether you might need to import the @Test tag from com.springsource.org.junit and not from org.junit.</p> <p>Volker</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/522640#522640 1 Answer by floehopper for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? floehopper 2009-02-06T23:18:20Z 2009-02-06T23:18:20Z <p>I had some similar sounding problems with jMock, JUnit &amp; Eclipse <a href="http://blog.floehopper.org/articles/2009/01/22/climbing-back-onto-the-java-horse" rel="nofollow">recently</a>, although admittedly not with <em>plugin</em> tests.</p> <p>I'm not sure if it's relevant, but I got it all working with the following versions :-</p> <ul> <li>jmock-2.5.1.jar</li> <li>hamcrest-core-1.1.jar</li> <li>hamcrest-library-1.1.jar</li> <li>jmock-junit4-2.5.1.jar</li> </ul> <p>I also found I had to use the <a href="http://www.jmock.org/javadoc/2.5.1/org/jmock/integration/junit4/JMock.html" rel="nofollow">JMock test runner</a> like this :-</p> <pre><code> 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() { </code></pre> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/892198#892198 0 Answer by ranrose for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? ranrose 2009-05-21T10:05:28Z 2009-05-21T10:05:28Z <p>@RunWith(Suite.class) @SuiteClasses( { UserServiceTest.class,ABCServiceTest.class })</p> <p>public class AllTestSuite {</p> <p>public static Test suite() {</p> <pre><code> return new JUnit4TestAdapter(AllTestSuite .class); } </code></pre> <p>}</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/892447#892447 0 Answer by ssmithstone for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? ssmithstone 2009-05-21T11:25:28Z 2009-05-21T11:25:28Z <p>I think the spring testing framework is not compatible with junit 4.4+</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de/939288#939288 0 Answer by Joen for Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? Joen 2009-06-02T12:42:47Z 2009-06-02T12:42:47Z <p>In my experience this happens if the plugin which contains the plugin tests does not depend on junit. After adding the junit 4.4 dependency to my MANIFEST.MF file the error went away and all tests were executed. The junit dependency should be optional because the plugin usually only needs it for the test code.</p>