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