I tried both of them, neither works:(

On 20/09/2022 14:48, Eric Barboni wrote:
Hi, did you try the 3.0.0-M7 or 2.22.0 version of surefire?
They contains junit 5 fixes

Regards
Eric
-----Message d'origine-----
De : Jean-Marc Borer<jmbo...@gmail.com> Envoyé : mardi 20 septembre 2022 14:55
À :dev@netbeans.apache.org
Objet : Re: maven-surefire-plugin 2.20 and newer doesn't work with Test Result 
window

Hello Vlad,

I have this issue since a looonnnnngg time. It started with NB 12 (or even
11 not sure). I still don't know why it is failling.

Sorry not beining able to help you. Please file an issue on Github but make 
sure there not already one.

Best regards,

JM

On Sun, Sep 18, 2022 at 9:49 PM Vladimir Machat<macha...@gmail.com>  wrote:

I have been trying to figure out how to get JUnit 5 tests working
correctly in Netbeans 15.

with maven-surefire-plugin version 2.19.1 and lower it works but with
versions starting 2.20 the Test Result window in Netbeans just says
'No tests executed' even though in the Output window I can see that
they were executed.

Running tests from command line - mvn surefire:test - works fine,
tests are executed.

Setting trimStackTrace to false didn't help.


Netbeans version 15

Java tried with 8, 11, 17 and 18

Maven tried with 3.8.6 and 3.8.4

Junit 5 tried with almost all versions from 5.6.0 to 5.9.0

OS Linux Manjaro

pom:

<?xml version="1.0" encoding="UTF-8"?> <project
xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.atrament</groupId>
      <artifactId>TestJunit5</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
      <dependencies>
          <dependency>
              <groupId>org.junit.jupiter</groupId>
              <artifactId>junit-jupiter</artifactId>
              <version>5.9.0</version>
              <scope>test</scope>
              <type>jar</type>
          </dependency>
      </dependencies>
      <build>
          <plugins>
              <plugin>
                  <artifactId>maven-surefire-plugin</artifactId>
                  <version>2.20</version>
              </plugin>
          </plugins>
      </build>
      <properties>
          <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
          <maven.compiler.source>11</maven.compiler.source>
          <maven.compiler.target>11</maven.compiler.target>

<exec.mainClass>org.atrament.testjunit5.TestJunit5</exec.mainClass>
      </properties>
</project>

Can anyone help please?

Thanks

Vlad


---------------------------------------------------------------------
To unsubscribe, e-mail:dev-unsubscr...@netbeans.apache.org
For additional commands, e-mail:dev-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Reply via email to