Reputation: 24094
In Eclipse, I have two source folders, one called src
the other called test
. They have the exact same package structure and each src Class has a test equivalent with "Test" appended to its name. Sometimes, I move my src classes during refactoring. Is there a setting where Eclipse automatically moves the test classes as well? Also, the same with renaming source classes.
Upvotes: 3
Views: 77
Reputation: 39631
No, because eclipse doesn't know the convention you are writing about.
Upvotes: 1