We have a multi-module Maven installation with the pom.xml wizard, which includes all the others. Thus, mvn test from the root directory runs all of our unit tests with text output.
I can run Run / Run As / JUnit Test to run a single test class with a graphical test runner.
Question: How can I combine these two so that I can run all the tests run by mvn test , but with a graphical runner, for example, from the Run / Run As / JUnit test?
source share