Skip to content

Commit

Permalink
Changed tests build descriptor to allow specifying the run test class…
Browse files Browse the repository at this point in the history
… from command line (with -DtestClassArg=full.class.name)
  • Loading branch information
ikuraj committed Nov 7, 2012
1 parent 01f8851 commit 6bdaa11
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ch.epfl.insynth.build/ch.epfl.insynth.tests/pom.xml
Expand Up @@ -8,6 +8,10 @@
<artifactId>ch.epfl.insynth.tests</artifactId>
<packaging>eclipse-test-plugin</packaging>

<properties>
<testClassArg>ch.epfl.insynth.test.TestSuite</testClassArg>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
Expand All @@ -31,7 +35,7 @@
<showEclipseLog>true</showEclipseLog>
<reportsDirectory>reports</reportsDirectory>
<testSuite>${project.artifactId}</testSuite>
<testClass>ch.epfl.insynth.test.TestSuite</testClass>
<testClass>${testClassArg}</testClass>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 6bdaa11

Please sign in to comment.