Home > Back-end >  display green junit test names in spring-tool-suite 4.11
display green junit test names in spring-tool-suite 4.11

Time:09-17

In Spring Tool Suite 4.11 (Eclipse 4.20) is there some way you can get the names of tests that pass (Green) to be displayed, just as when they're failing? This is what it looks like now with all green tests:

Green tests not displayed

My reasoning is that while developing tests it would be useful to see the names also of those that pass.

CodePudding user response:

Disable the Show Failures Only button (the only button that is enabled in your screenshot) to display all, failed and passed tests.

See Eclipse help: Java development user guide > Reference > Views > JUnit View

  • Related