Your Internet Explorer version is not compatible with our shopping cart system. Please use version 9 or higher to avoid problems with your order(s). Close
I have a webapp made with MyEclipse and I’d like to use JUnit properly. I can launch my JUnit tests but I can see the test files are present inside the webapp/WEB-INF/classes… .
Then how to avoid that behavior?
Adobex,
Open up your project properties, go to the Java Build Path settings and Source tab. Then select the folder you place your unit tests in and then give them a separate output dir.
If your tests are mixed in with your code in the same source tree, then you can’t exclude them from your output dir.
Perfect! That’s what I was looking for and I didn’t know I could do it like that.
However, the check box label “Allow output folders for source folders” wasn’t clear enough for me and I tought it had another meaning.