[JAVA-10432] Rename and enable testng-command-line module

This commit is contained in:
Haroon Khan
2022-03-04 21:17:23 +00:00
parent 8c63a8e145
commit 2bdc9bf90d
6 changed files with 8 additions and 6 deletions

View File

@@ -45,6 +45,7 @@
<module>testing-libraries-2</module>
<module>testing-libraries</module>
<module>testng</module>
<module>testng-command-line</module>
<module>xmlunit-2</module>
<module>zerocode</module>
</modules>

View File

@@ -3,10 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung.testing_modules</groupId>
<artifactId>testng_command_line</artifactId>
<artifactId>testng-command-line</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>testng-command-line</name>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>testing-modules</artifactId>

View File

@@ -1,4 +1,4 @@
package com.baeldung.testing_modules.testng_command_line;
package com.baeldung.testng;
import java.text.SimpleDateFormat;
import java.util.Date;

View File

@@ -1,7 +1,8 @@
package com.baeldung.testing_modules.testng_command_line;
package com.baeldung.testng;
import java.util.Date;
import com.baeldung.testng.DateSerializerService;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

View File

@@ -4,7 +4,7 @@
<test name="Date Serializer">
<classes>
<class
name="com.baeldung.testing_modules.testng_command_line.DateSerializerServiceUnitTest" />
name="com.baeldung.testng.DateSerializerServiceUnitTest" />
</classes>
</test>
</suite>