My unit tests are in a separate directory tree from my integration tests, but with the same package structure. My integration tests require external resources (such as a server), but my unit tests are independent of each other and the environment.
In IntelliJ-IDEA (v7), I defined a JUnit run / debug configuration to run all the tests in a top-level package, and this, of course, takes away my integration tests that fail.
I want to define a run-junit configuration that runs all my unit tests. Any ideas?
java intellij-idea unit-testing junit
Paul McKenzie Aug 18 '09 at 13:33 2009-08-18 13:33
source share