Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am attempting to get the Jersey test framework working. We are building using maven 1.x. I've created the following testcase...

public class SomeResourceTest extends JerseyTest
{
    public SomeResourceTest () throws Exception 
    {
        super(new WebAppDescriptor.Builder(PACKAGE_NAME)
                      .contextPath(PATH).build());
    }    
    @Test
    public void testSomething() 
    {
        Assert.assertEquals(true, true);
    }
}

When I build, I get no tests found in SomeResourceTest.

Now, when I change the testcase to extend junit.framework.TestCase, the test runs just fine.

Any clue what might be causing the problem? JerseyTest is supposed to extend TestCase, so I am assuming it to be some other configuration problem.

share|improve this question
Perhaps you need a "JerseyTest" plugin for maven? – Bill K Jul 29 '10 at 21:19
You may want to add the junit tag to this question so more test folks see it. – Jeanne Boyarsky Jul 29 '10 at 22:57

2 Answers

up vote 1 down vote accepted

Any clue what might be causing the problem? JerseyTest is supposed to extend TestCase (...)

The Jersey Test Framework is build over JUnit 4.x so, no, it doesn't.

To run JUnit 4.x tests with Maven 1.x, you'll have to:

  • Add Junit 4.X in your dependencies

  • Use the JUnit4TestAdapter in your test classes:

    /**
     * @return instance of this as Junit test case
     */
    public static junit.framework.Test suite()
    {
        return new JUnit4TestAdapter(MyTestClass.class);
    }
    
  • Use a JDK 5+

See http://jira.codehaus.org/browse/MPTEST-65.

share|improve this answer
This worked, along with upping my Jersey jars to the latest. I think I had some combination of Junit 3.x, and a motely Jersey collection. Thanks! – P. Deters Jul 30 '10 at 14:47

What version of JerseyTest are you using? The latest version relies on JUnit 4 and does not extend TestCase.

Also, your test is a bit confusing. It has @Test which implies you are using JUnit 4 and shouldn't extend TestCase. But it sounds like you are still relying on the testXXX and TestCase subclass convention from JUnit 3.8 in your description.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.