vote up 6 vote down star

Most of our Eclipse projects have multiple source folders, for example:

  • src/main/java
  • src/test/java

When you right-click on a class and choose New JUnit Test, the default source folder for the new test is "src/main/java" (presumably the first source folder listed in the project properties).

Is there any way to change the default source folder for new JUnit tests, so that when I do the above action, the new test will be created in say the "src/test/java" folder by default?

flag

43% accept rate

2 Answers

vote up 5 vote down check

I use moreUnit, an Eclipse plugin to assist writing unit tests. Among other features, it lets you configure the default source folder of tests.

link|flag
I'd vote you up but I'm out of votes for the next hour! :-) – Andrew Swan Sep 16 '08 at 22:54
moreunit looks awesome, thanks – matt b Sep 19 '08 at 16:55
Voted you up. Now I love moreUnit and couldn't live without my Ctrl-J to jump between the code and its test. – Andrew Swan Oct 14 '08 at 11:15
vote up 4 vote down

No.

Unless you change the plugin code, the default source folder is always the same as that containing the class you right clicked on (not necessarily the first source folder listed). I agree, it would be nice to be able to change it!

link|flag

Your Answer

Get an OpenID
or

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