How to default the source folder for new JUnit tests in Eclipse? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T20:03:21Zhttp://stackoverflow.com/feeds/question/69063http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/69063/how-to-default-the-source-folder-for-new-junit-tests-in-eclipse6How to default the source folder for new JUnit tests in Eclipse?Andrew Swan2008-09-16T03:03:12Z2008-09-16T17:19:40Z
<p>Most of our Eclipse projects have multiple source folders, for example:</p>
<ul>
<li>src/main/java</li>
<li>src/test/java</li>
</ul>
<p>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).</p>
<p>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?</p>
http://stackoverflow.com/questions/69063/how-to-default-the-source-folder-for-new-junit-tests-in-eclipse/69167#691674Answer by Dave L. for How to default the source folder for new JUnit tests in Eclipse?Dave L.2008-09-16T03:27:57Z2008-09-16T03:27:57Z<p>No.</p>
<p>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!</p>
http://stackoverflow.com/questions/69063/how-to-default-the-source-folder-for-new-junit-tests-in-eclipse/74731#747315Answer by pauxu for How to default the source folder for new JUnit tests in Eclipse?pauxu2008-09-16T17:19:40Z2008-09-16T17:19:40Z<p>I use <a href="http://moreunit.sourceforge.net/" rel="nofollow">moreUnit</a>, an Eclipse plugin to assist writing unit tests. Among other features, it lets you configure the default source folder of tests.</p>