Re: Maven ignoring JUnit5 tests when run from command line

2020-11-24 Thread Karl Heinz Marbaise
Hi, the configuration in your pom file is wrong... Several parts.. not using the most recent version of JUnit Jupiter (current 5.7.0) furthermore not the right version of maven-surefire-pugin as described in the JUnit Jupiter documentation ... Also mixing assertions in JUnit 4 test vs .JUnit 5

Maven ignoring JUnit5 tests when run from command line

2020-11-24 Thread Alain Désilets
I am trying to upgrade from JUnit4 to JUnit5 and am experiencing a strange issuewhereby: - JUnit4 tests are fine - JUnit5 tests work when run through intelliJ, but are ignored when run through the maven command line I attach a small project (zip file) that illustrates the issue. Also attached is