havapa / testability-explorer

Automatically exported from code.google.com/p/testability-explorer
Apache License 2.0
0 stars 0 forks source link

TextReportTest.testPrintSummary should be Locale agnotisc #31

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Run mvn test on core on a machine with a non-US local

What is the expected output? What do you see instead?
Tests should pass, but they don't

What version of the product are you using? On what operating system?
1.32-SNAPSHOT

Please provide any additional information below.
Patch included

Original issue reported on code.google.com by cedric.l...@gmail.com on 18 Jun 2009 at 3:15

Attachments:

GoogleCodeExporter commented 8 years ago
Workaround: add jvm locale parameters to pom.xml:

<build>
...
 <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <argLine>-Duser.language=en -Duser.region=EN</argLine>
        </configuration>
      </plugin>
    </plugins>
...
</build>

Original comment by lukasz.k...@gmail.com on 8 Dec 2009 at 11:16