* BAEL-5242: Add surefire config for TestNG * BAEL-5242: Configure surefire to run unit and integration tests
10 lines
371 B
XML
10 lines
371 B
XML
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
|
|
<suite name="int">
|
|
<test name="integration tests">
|
|
<classes>
|
|
<class name="com.baeldung.GroupIntegrationTest" />
|
|
<class name="com.baeldung.MultiThreadedIntegrationTest" />
|
|
<class name="com.baeldung.TimeOutIntegrationTest" />
|
|
</classes>
|
|
</test>
|
|
</suite> |