vote up 6 vote down star
2

Are there any libraries for Java that can generate unit tests or unit test skeletons for existing code? I'm looking for something similar to pythoscope. Ideally it would generate code that follows JUnit4 or TestNG conventions.

It looks like Agitar does something like this, but I'm looking for something free.

flag

I looked into auto generating tests with Agitar but the tests it generated were not very useful. – Craig Angus Sep 29 '08 at 18:03

3 Answers

vote up 1 vote down

Most IDEs will generate test method stubs for any class. I know Eclipse will.

New->JUnit Class then you tell it which class you're testing and what methods you want to test.

link|flag
vote up 0 vote down

Agitar had a free service that allowed you to do this (you had to be prepared to let it send your code to their servers).

If you were using scala, there is "scala check" - but I am not sure how well it works with java source (even though its all byte code).

link|flag
Sadly that's unacceptable for my uses (proprietary code) – Ryan Sep 24 '08 at 2:42
vote up 0 vote down

I've been trying to get TestGen4j running but it looks like it hasn't been maintained :( Perhaps you give that a try?

link|flag

Your Answer

Get an OpenID
or

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