Reputation: 2358
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