Unrooted Tests - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:18:01Z http://stackoverflow.com/feeds/question/120889 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120889/unrooted-tests 2 Unrooted Tests Paul Croarkin 2008-09-23T13:12:46Z 2009-10-09T19:51:49Z <p>When running all my tests in Eclipse (Eclipse 3.4 'Ganymede'), one test is listed under "Unrooted Tests". I'm using Junit 3.8 and this particular test extends TestCase. I do not see any difference between this test and the other tests. I don't remember seeing this occur in Eclipse 3.3 (Europa).</p> <p>Clarification:</p> <p>We haven't moved to JUnit 4.0 yet, so we are not using annotations. I also googled and it seemed like most people were having issues with JUnit 4, but I did not see any solutions. At this point the test passes both locally and in CruiseControl so I'm not overly concerned, but curious.</p> <p>When I first saw this, though, it was on a failing test that only failed when run with other tests. This led me down the rabbit hole looking for a solution to the "Unrooted" issue that I never found. Eventually I found the culprit in another test that was not properly tearing down.</p> <p>I agree, it does seem like an Eclipse issue.</p> http://stackoverflow.com/questions/120889/unrooted-tests/121075#121075 1 Answer by Jim Kiley for Unrooted Tests Jim Kiley 2008-09-23T13:42:15Z 2008-09-23T13:42:15Z <p>I've never seen this -- but as far as I can tell from skimming Google for a few minutes, this appears as though it could be a bug in Eclipse rather than a problem with your test. You don't have the @Test annotation on the test, I assume? Can you blow the test away and recreate it, and if so do you get the same error?</p> http://stackoverflow.com/questions/120889/unrooted-tests/121992#121992 4 Answer by aaron for Unrooted Tests aaron 2008-09-23T16:04:52Z 2008-09-23T16:04:52Z <p>I have run into this before as well. I do believe it has to do with JUnit 3/4 discrepancies. Check that your unit tests are running with the appropriate JUnit runner class. See: <a href="http://www.nabble.com/what%27s-an-%22Unrooted-Test%22-and-why-can%27t-I-find-anything-online-about-it--td14326290.html" rel="nofollow">http://www.nabble.com/what%27s-an-%22Unrooted-Test%22-and-why-can%27t-I-find-anything-online-about-it--td14326290.html</a></p> http://stackoverflow.com/questions/120889/unrooted-tests/283064#283064 3 Answer by laz for Unrooted Tests laz 2008-11-12T04:40:37Z 2008-11-12T04:40:37Z <p>If your class extends TestCase somewhere in its hierarchy, you have to use the JUnit 3 test runner listed in the drop down under run configurations. Using the JUnit 4 runner (the default I believe) causes that unrooted test phenomenon to occur.</p> http://stackoverflow.com/questions/120889/unrooted-tests/803487#803487 3 Answer by raiglstorfer for Unrooted Tests raiglstorfer 2009-04-29T17:46:06Z 2009-04-29T17:46:06Z <p>Finally I found the solution. The problem is that you are not defining your test cases using annotations but are still doing it the "old way". As soon as you convert over to using annotations you will be able to run one test at a time again.</p> <p>Here is an example of what a basic test should now look like using annotations:</p> <pre><code>import static org.junit.Assert.*; // Notice the use of "static" here import org.junit.Before; import org.junit.Test; public class MyTests { // Notice we don't extent TestCases anymore @Before public void setUp() { // Note: It is not required to call this setUp() // ... } @Test public void doSomeTest() { // Note: method need not be called "testXXX" // ... assertTrue(1 == 1); } } </code></pre> http://stackoverflow.com/questions/120889/unrooted-tests/1123899#1123899 0 Answer by Krishna Kumar for Unrooted Tests Krishna Kumar 2009-07-14T07:12:47Z 2009-07-14T07:12:47Z <p>I could the fix the issue by shifting from TestRunner ver 4.0 to 3 in run configurations for the individual test method.</p> http://stackoverflow.com/questions/120889/unrooted-tests/1545738#1545738 0 Answer by geo for Unrooted Tests geo 2009-10-09T19:51:49Z 2009-10-09T19:51:49Z <p>Do not extend junit.framework.TestCase in your test class with junit1.4 and this should solve the problem </p>