unit testing frameworks for java
|
| View previous topic :: View next topic |
| Author |
Message |
Trendi
Joined: 25 Jun 2006 Posts: 16
|
What other unit testing frameworks are there for java besides JUnit and JTiger?
What's so great about testNG that makes it better than JUnit
? |
| |
|
|
|
|
Keith Maclaine
Joined: 23 Jun 2006 Posts: 12
|
| Power and flexibility |
| |
|
|
Roombor
Joined: 02 Jun 2006 Posts: 111
|
You can pass parameters to your tests
It allows you to run junit tests
It uses annotations (but so does junit now)
It allows you to run one setUp per class as opposed to per test
I think it allows you to specify orders
Of your tests
And it allows you to require prerequisite tests i believe
Although... i use junit |
| |
|
|
Keith Maclaine
Joined: 23 Jun 2006 Posts: 12
|
| Test grouping, test data input factories, finer grained failure reports, more flexible setup/teardown system. |
| |
|
|
|
|