JUnit test exception in eclipse

Hey
I have a whole bunch of unit tests. I placed them in suitable test suites. I would like to be able to click on the root directory and run JUnit tests to run all the tests. However, if I do, it runs all the tests and then runs testuites. Therefore, repeat all tests.

Is it possible to exclude tests in Eclipse? thanks

+6
java
source share
1 answer

When you right-click on the project directory and Run As > JUnit test , the corresponding running launch configuration is basically executed. So go to Run > Run Configurations , and in the left pane, see what exactly your JUnit configuration does and is configured accordingly.

+1
source share

All Articles