1

Several tests in the test class of TestExecutionExceptionHandlerTest#ATestClass throw exceptions yet I assume the unit tests of Junit pass just fine. Can someone explain what is going on?

Hans Wurst
  • 376
  • 1
  • 3
  • 12

1 Answers1

1

This answer explains it. More specifically the last comment by Sam Brannen:

Maven Surefire [...] is not executing your static nested test class because of its default exclude rule.

Hans Wurst
  • 376
  • 1
  • 3
  • 12