Skip to content

Commit b5e14e1

Browse files
committed
Rename test classes so that they are executed by Maven's Surefire plugin
1 parent 57ef905 commit b5e14e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/com/dd/plist/test/GoogleCodeIssueTests.java renamed to src/test/java/com/dd/plist/test/GoogleCodeIssueTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* This class contains tests for issues that were managed with the Google Code issue tracking system
1313
*/
14-
public class GoogleCodeIssueTests extends TestCase {
14+
public class GoogleCodeIssueTest extends TestCase {
1515
public static void testIssue4() throws Exception {
1616
NSDictionary d = (NSDictionary)PropertyListParser.parse(new File("test-files/issue4.plist"));
1717
assertTrue(((NSString)d.objectForKey("Device Name")).toString().equals("Kid\u2019s iPhone"));

src/test/java/com/dd/plist/test/IssueTests.java renamed to src/test/java/com/dd/plist/test/IssueTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Regression tests for various issues and bugs that have been encountered
1515
*/
16-
public class IssueTests extends TestCase {
16+
public class IssueTest extends TestCase {
1717
public static void testGzipInputStream() {
1818
try {
1919
File plistFile = new File("test-files/test-gzipinputstream-issue.plist");

0 commit comments

Comments
 (0)