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

What are the technologies out there? (I only know of JUnit) What is the most popular? Can you please explain the pros/cons of each?

Thanks Alot!!

share|improve this question

5 Answers

up vote 6 down vote accepted

JUnit and TestNG are the main unit test frameworks.

Comparison can be found here - http://www.ibm.com/developerworks/java/library/j-cq08296/

I've used JUnit in most places I've worked, it seems to be the standard, but there are some nice things in TestNG.

I've used the following in combination with JUnit to facilitate testing:

share|improve this answer

JUnit and TestNG are the most popular. JUnit being the de-facto standard, and TestNG providing some extra features.

share|improve this answer
1  
Hence the NG - "Next Generation". – duffymo Oct 29 '10 at 21:29

There are a lot of "add-on" framework for specific kinds of testing, typically these depend on JUnit. Examples:

  • DBUnit - for testing code that accesses a database
  • JFCUnit - for testing Swing apps
  • HTMLUnit - for testing web apps
share|improve this answer

You can find good comparison between JUnit and TestNG here:

http://hi.baidu.com/auraro816/blog/item/efe0574d03db6df4d72afc9f.html

if you have time to listen podcast try with Basement coders -Episode 21 – Interview with Cedric Beust creator of testNG

share|improve this answer

Apart from all the listing above, You can include selenium as well. This is widely used in industry for Java UI testing.

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.