This is an automated email from the ASF dual-hosted git repository. tibordigana pushed a commit to branch 1546-1222 in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/1546-1222 by this push: new 71427a5 build fix 71427a5 is described below commit 71427a5f0e584fd705d051916b7c86e159316ea6 Author: tibordigana <tibordig...@apache.org> AuthorDate: Fri Apr 5 00:28:18 2019 +0200 build fix --- pom.xml | 1 + .../test/resources/junit-platform-engine-jupiter/pom.xml | 10 ++++++++++ .../java/junitplatformenginejupiter/DisplayNameTest.java | 15 +++++++++------ 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 20e10c5..740357a 100644 --- a/pom.xml +++ b/pom.xml @@ -470,6 +470,7 @@ <compilerArgs> <arg>-Xdoclint:all</arg> </compilerArgs> + <encoding>UTF-8</encoding> </configuration> </plugin> <!-- NOTE: animal sniffer does not check test classes: https://jira.codehaus.org/browse/MANIMALSNIFFER-40 --> diff --git a/surefire-its/src/test/resources/junit-platform-engine-jupiter/pom.xml b/surefire-its/src/test/resources/junit-platform-engine-jupiter/pom.xml index 99255c6..bbcc715 100644 --- a/surefire-its/src/test/resources/junit-platform-engine-jupiter/pom.xml +++ b/surefire-its/src/test/resources/junit-platform-engine-jupiter/pom.xml @@ -59,9 +59,19 @@ <build> <plugins> <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.7.0</version> + <configuration> + <encoding>UTF-8</encoding> + </configuration> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.version}</version> + <configuration> + <redirectTestOutputToFile>true</redirectTestOutputToFile> + </configuration> </plugin> </plugins> </build> diff --git a/surefire-its/src/test/resources/junit-platform-engine-jupiter/src/test/java/junitplatformenginejupiter/DisplayNameTest.java b/surefire-its/src/test/resources/junit-platform-engine-jupiter/src/test/java/junitplatformenginejupiter/DisplayNameTest.java index aaaa461..a6401e3 100644 --- a/surefire-its/src/test/resources/junit-platform-engine-jupiter/src/test/java/junitplatformenginejupiter/DisplayNameTest.java +++ b/surefire-its/src/test/resources/junit-platform-engine-jupiter/src/test/java/junitplatformenginejupiter/DisplayNameTest.java @@ -19,24 +19,27 @@ package junitplatformenginejupiter; * under the License. */ -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertTrue; - import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; -@DisplayName("<< ✨ >>") +@DisplayName( "<< ✨ >>" ) class DisplayNameTest { @Test - @DisplayName("73$71 ✔") + @DisplayName( "73$71 ✔" ) void test1() + throws Exception { + System.out.println( getClass().getDeclaredMethod( "test1" ).getAnnotation( DisplayName.class ).value() ); + System.out.println( getClass().getAnnotation( DisplayName.class ).value() ); } @Test - @DisplayName("73$72 ✔") + @DisplayName( "73$72 ✔" ) void test2() + throws Exception { + System.out.println( getClass().getDeclaredMethod( "test2" ).getAnnotation( DisplayName.class ).value() ); + System.out.println( getClass().getAnnotation( DisplayName.class ).value() ); } }