You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2018/08/26 13:10:24 UTC

[maven-surefire] branch INV1561 updated: printing encoding in IT

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch INV1561
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/INV1561 by this push:
     new b57ac21  printing encoding in IT
b57ac21 is described below

commit b57ac216014ce7150c6bb5c4563d7bdb34f10587
Author: Tibor17 <ti...@apache.org>
AuthorDate: Sun Aug 26 15:10:10 2018 +0200

    printing encoding in IT
---
 .../src/test/java/testng/suiteXml/TestNGSuiteTest.java                 | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/surefire-its/src/test/resources/testng-parallel-suites/src/test/java/testng/suiteXml/TestNGSuiteTest.java b/surefire-its/src/test/resources/testng-parallel-suites/src/test/java/testng/suiteXml/TestNGSuiteTest.java
index a22bed6..e2538fc 100644
--- a/surefire-its/src/test/resources/testng-parallel-suites/src/test/java/testng/suiteXml/TestNGSuiteTest.java
+++ b/surefire-its/src/test/resources/testng-parallel-suites/src/test/java/testng/suiteXml/TestNGSuiteTest.java
@@ -21,6 +21,7 @@ package testng.suiteXml;
 
 import org.testng.annotations.Test;
 
+import java.nio.charset.Charset;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicInteger;
 
@@ -35,6 +36,8 @@ public class TestNGSuiteTest {
 	public void shouldRunAndPrintItself()
 		throws Exception
 	{
+
+		System.out.println( "our test encoding = " + Charset.defaultCharset() );
 		System.out.println( getClass().getSimpleName() + "#shouldRunAndPrintItself() "
 				+ counter.incrementAndGet() + ".");