Eric
Eric

Reputation: 2358

Automatically organising JUnit tests

On our project we organise our unit tests according to the maven convention.

src/main/java/com.company.project/SomeClass.java
src/test/java/com.company.project/SomeClassTest.java

Can anyone recommend a good tool for keeping test classes in sync when the class under test changes name or moves package, or even moves from one maven project to another?

Upvotes: 2

Views: 163

Answers (1)

cpater
cpater

Reputation: 1099

Try moreUnit (http://moreunit.sourceforge.net/) for eclipse.

Upvotes: 4

Related Questions