Merge pull request #11890 from hkhan/JAVA-10432-enable-testng-module

[JAVA-10432] Rename and enable testng-command-line module
This commit is contained in:
kwoyke 2022-03-07 09:52:31 +01:00 committed by GitHub
commit c3818d2c55
6 changed files with 8 additions and 6 deletions

View File

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

View File

@ -3,10 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<artifactId>testng-command-line</artifactId>
<groupId>com.baeldung.testing_modules</groupId>
<artifactId>testng_command_line</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<name>testng-command-line</name>
<parent> <parent>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
<artifactId>testing-modules</artifactId> <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.text.SimpleDateFormat;
import java.util.Date; 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 java.util.Date;
import com.baeldung.testng.DateSerializerService;
import org.testng.annotations.BeforeClass; import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test; import org.testng.annotations.Test;

View File

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