[
https://issues.apache.org/jira/browse/SUREFIRE-1536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16581000#comment-16581000
]
Christian Stein commented on SUREFIRE-1536:
-------------------------------------------
You should be able to _include_ all classes by changing the default
configuration described here:
*"Filtering by Test Class Names"*
[https://maven.apache.org/surefire/maven-surefire-plugin/examples/junit-platform.html]
Try
{{<includes><include>}}{{**/*.java</include></includes>}}
elements.
> Surefire doesn't discovery JUnit5 Tests, when classname has no *Test* in its
> name.
> ----------------------------------------------------------------------------------
>
> Key: SUREFIRE-1536
> URL: https://issues.apache.org/jira/browse/SUREFIRE-1536
> Project: Maven Surefire
> Issue Type: Bug
> Components: JUnit 5.x support
> Affects Versions: 2.22.0
> Reporter: Alexei Vinogradov
> Assignee: Christian Stein
> Priority: Trivial
> Labels: junit5
>
> {{*pom.xml*}}
>
> <dependencies>
> <dependency>
> <groupId>org.junit.jupiter</groupId>
> <artifactId>junit-jupiter-engine</artifactId>
> <version>5.2.0</version>
> <scope>test</scope>
> </dependency>
> </dependencies>
> <build>
> <plugins>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-surefire-plugin</artifactId>
> <version>2.22.0</version>
> <dependencies>
> <dependency>
> <groupId>org.junit.platform</groupId>
> <artifactId>junit-platform-surefire-provider</artifactId>
> <version>1.2.0</version>
> </dependency>
> </dependencies>
> </plugin>
> </plugins>
> </build>
> import org.junit.jupiter.api.Assertions;
> import org.junit.jupiter.api.DisplayName;
> import org.junit.jupiter.api.Test;
> public class Scenario {
> @Test
> public void test()
> { Assertions.assertEquals(4, 2 + 2); }
>
> mvn test
> finds no test. It is no more mandatory to name the test classes with Test in
> its name.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)