Unrooted Tests

℡╲_俬逩灬. 提交于 2019-11-28 09:37:28

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.

Here is an example of what a basic test should now look like using annotations:

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);
  }
}

I was getting the "unrooted tests" error message as well and it went away magically. I believe it was due to the fact that I was using Eclipse with a Maven project. When I added a new method to my Test class and gave it the @Test annotation, it began getting the error message when I tried to run that one method using the "Run as Junit test" menu option; however, once I ran a maven build the unrooted tests message disappeared and I believe that is the solution to the problem in the future.

Run a maven build because it will refresh the class that JUnit is using.

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.

Zoltán

I got this error because I renamed my test method and then tried to run the test in Eclipse by clicking on the same run configuration - referring to the old method which now didn't exist.

We solved the problem by making sure our test project was built. We had an issue in the build path which would not allow our test class to be compiled. Once we resolved the build path issue, the test compiled and the "new" method was able to be run. So we can assume that "Unrooted" tests also mean that they don't exist in the compiled binary.

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?

Another scenario that causes this problem was me blindly copy/pasting a method that requires a parameter. i.e.

import org.junit.Test;

public class MyTest {

    @Test
    public void someMethod(String param) {
          // stuff
    }

}

You have a few simple solutions:

  1. define the variable in the specific test method

  2. add it as an instance variable to the test class

  3. create a setup method and annotate it with @Before

For me, it was due to the project got build path issues. My maven dependencies configuration needs to be updated.

I had that problem and putting one "@Test" before the test method solved it!

like this:

@Test public void testOne() { // ... assertTrue(1 == 1); }

These are the two scenarios that the Unrooted errors show up.

  1. If you have missed the annotation @Test before the test.

    @Test

    public void foo(){ }

  2. If it is a Gwt project and when two mock of the same object are defined. Lets say there is one class Class A and

    @GwtMock private A atest;

    @GwtMock private A a; Then this will also show a Unrooted test error.

guillaume girod-vitouchkina

I had the same problem with java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing

you need the jar hamcrest. same question 14539072: java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing

I could the fix the issue by shifting from TestRunner ver 4.0 to 3 in run configurations for the individual test method.

Do not extend junit.framework.TestCase in your test class with junit1.4 and this should solve the problem

You are using Hamcrest? or another library to help in your test?. You are not using

import static org.junit.Assert.*;

Check if in your test you use:

import static org.hamcrest.MatcherAssert.assertThat;

or other assert isn´t JUnit assert.

It turned out to be that my build path had some error...some jars were missing. I reconfigured build path and it worked!

For me the problem was, that an exception was thrown in the @BeforeClass or @AfterClass methods. This will also cause tests to be categorized as unrooted.

I got this error with the test method name as "test"

@Test 
public void test() {
 // ... assertTrue(1 == 1); 
}

I renamed the method and it worked

I ran into this problem by not also declaring the test to be static.

One other thing you can try is to upgrade your version of JUnit to at least 4.12.

I was experiencing this problem for a while with a class that extended one that used @RunWith(Parameterized.class).

After a while, and I'm sorry that I don't know precisely what I did to cause this, the 'Unrooted Tests' message went away, but the test still didn't run correctly. The constructor that should have accepted arguments from the @Parameters method was never getting called; execution jumped straight from @BeforeClass to @AfterClass.

The fix for that problem was to upgrade JUnit from the 4.8.1 it was using, to the latest (4.12). So maybe that could help someone else in the future.

Maybe it's just a logical confusion about the goal of the method. Let's remember:

E.g. correct tagged test method:

@Test
@Transactional
@Rollback(true)
public void testInsertCustomer() {  
    (...)
}

-With Eclipse Junit plugin, You can run that test method using context menu over the method (E.g. at package explorer expanding the class and methods and selecting "testInsertCustomer()" method and from that item selecting "Run as >> JUnit test").

If you forgot "@Test" tag, or simply the method is not a test, but a (private or not) common method for using as utility for the other tests (e.g. "private fillCustomerObject()"), then the method does not require "@Test" tag, and simply you can not run it as a JUnit test!

It's easy that you could create a utility method and later you forgot the real goal of that method, so if you try to run it as a test, JUnit will shout "Unrooted Tests".

For me this problem was created by a real-time exception thrown in the @AfterClass method (take a look here for documentation):

Basically all the test methods succeeded but at the end of the class this method was failing. Therefore all the tests seems fine but there was on my Eclipse an additional "unrooted test" failed.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!