We have a typical Maven/Surefire/Junit setup. We have categorized some of the tests as SlowTests with Junit categories feature.
When we run the test(mvn test) the default behavior is to skip the SlowTests. We have done this by defining "excludedGroups" in surefire definition.
I thought that in the test output, the excluded tests will count towards number of "Skipped" tests. But the "Skipped" tests are always shown as '0'!!
How to make these excluded tests to count towards "Skipped" tests? In general, when will Junit/Surefire show "Skipped" tests > 0?