Skip to content
Snippets Groups Projects
Commit 02bb98a8 authored by Thiemo Belmega's avatar Thiemo Belmega
Browse files

Provide testng xml file for local tests only (running without server)

parent 89b19d29
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,17 @@
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<parallel>classes</parallel>
<suiteXmlFiles>
<suiteXmlFile>src/test/java/localTests.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
......
......@@ -2,9 +2,18 @@
<suite name="TestAll">
<test name="all">
<test name="LocalTests">
<packages>
<package name="de.unipotsdam.cs.toolup.*"/>
<package name="de.unipotsdam.cs.toolup.*">
<exclude name="de.unipotsdam.cs.toolup.ws.*"/>
</package>
</packages>
</test>
<test name="webserviceTests">
<packages>
<package name="de.unipotsdam.cs.toolup.ws.*">
</package>
</packages>
</test>
......
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="LocalTests">
<test name="LocalTests">
<packages>
<package name="de.unipotsdam.cs.toolup.*">
<exclude name="de.unipotsdam.cs.toolup.ws.*"/>
</package>
</packages>
</test>
</suite>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment