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 using ant and TestNG 6.1.1, and I had my tests working just fine yesterday. Today when I try to run the tests I get a NoClassDefFoundError involving com/beust/jcommander/ParamException. Here is the output:

[copy] Copying 1 file to /Users/djohnson/src/webapp/components/build/tmp
[testng] Exception in thread "main" java.lang.NoClassDefFoundError: com/beust/jcommander/ParameterException
[testng] Caused by: java.lang.ClassNotFoundException: com.beust.jcommander.ParameterException
[testng]    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[testng]    at java.security.AccessController.doPrivileged(Native Method)
[testng]    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[testng]    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[testng]    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[testng]    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[testng] The tests failed.

Here is the .xml file I'm using:

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="Single Method Suite">
  <test name="Single Method Test">
    <classes>
      <class name="DhcpTest">
        <methods>
          <exclude name=".*" />
          <include name="setGetEnabledTest" />
        </methods>
      </class>
    </classes>
  </test>
</suite>

I've also specified the complete path for the class with no luck. I've checked the classpath and everything seems fine, does anyone have any ideas on this?

share|improve this question
Okay, so I have added jcommander-1.17.jar to the classpath, and I still get the same error. – anotherdjohnson Aug 18 '11 at 0:21
Now that I have posted this for all the world to see, I discovered that jcommander wasn't actually in the classpath. I was sure I saw it there, but sure enough it was missing. Now it can't find the test, not sure why, because I've triple checked the classpath, and it's definitely there. – anotherdjohnson Aug 18 '11 at 0:38

3 Answers

up vote 3 down vote accepted

If you're using ant, JCommander should be inside testng.jar, so I'm thinking your testng.jar file might be corrupt.

share|improve this answer
Cedric, you are correct, I downloaded a copy of the testng.jar from the website and it worked just fine with out having a jcommander jar. We are using ivy so apparently it has a corrupt file in the cache. I'll have to look into getting that taken care of. Thanks for helping me out, yet again. – anotherdjohnson Aug 18 '11 at 0:48
Glad to hear it. FYI, rm -rf ~/.ivy2/org.testng should take care of the problem. – Cedric Beust Aug 18 '11 at 7:50
Cedric, it turns out that the file I'm using is the same file that is in the Maven 2 repository, so removing it from my ivy cache doesn't help. Is there a problem with the file in the cache, or is there something else going on here? – anotherdjohnson Aug 18 '11 at 21:38

If your using Maven try adding this to your pom.xml

<dependency>
  <groupId>com.beust</groupId>
  <artifactId>jcommander</artifactId>
  <version>1.30</version>
</dependency>
share|improve this answer

May be testng.jar is not in classpath.

share|improve this answer
As I mentioned in my original post, I checked the class path. Please see Cedric's response above. – anotherdjohnson Nov 21 '12 at 19:29

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.