Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JUnit GUI doesn't show executed test methods

I run a test class, the outprint in console is correct, but the list of the @Test methods doesn't appear in the JUnit tab:

Test class executed

How to fix it? Does the asterisk of the icon of the tab of the JUnit indicate any kind of problem (the same problem)?

like image 281
Isi Avatar asked Aug 09 '26 08:08

Isi


1 Answers

You are setting show failures only (the red and blue Xs), click on it to show all JUnit runs

Show Failures Only Shows only failed tests.

like image 86
user7294900 Avatar answered Aug 11 '26 21:08

user7294900