Skip to content

Commit

Permalink
new test-module: test-reaction
Browse files Browse the repository at this point in the history
git-svn-id: https://cdk.svn.sourceforge.net/svnroot/cdk/trunk/cdk@5893 eb4e18e3-b210-0410-a6ab-dec725e4b171
  • Loading branch information
miguelrojasch committed Apr 6, 2006
1 parent aa08ede commit 39b2a26
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 6 deletions.
5 changes: 4 additions & 1 deletion build.xml
Expand Up @@ -611,6 +611,7 @@
<antcall target="compile-module"><param name="module" value="test"/></antcall>
<antcall target="compile-module"><param name="module" value="test-core"/></antcall>
<antcall target="compile-module"><param name="module" value="test-extra"/></antcall>
<antcall target="compile-module"><param name="module" value="test-reaction"/></antcall>
</target>

<target id="dist-large" name="dist-large" depends="dist-all"
Expand Down Expand Up @@ -793,6 +794,7 @@
</test>
</junit>
</target>


<target id="noJunit" name="noJunit" depends="check" unless="junit.present">
<fail message="JUnit is not installed in Ant. Please copy cdk/develjar/junit.jar to ${ant.home}/lib/."/>
Expand Down Expand Up @@ -844,7 +846,8 @@
description="Performs a full JUnit test for the CDK."
if="junit.present">
<antcall target="test-module"><param name="module" value="core"/></antcall>
<antcall target="test-module"><param name="module" value="extra"/></antcall>
<antcall target="test-module"><param name="module" value="extra"/></antcall>
<antcall target="test-module"><param name="module" value="reaction"/></antcall>
</target>

<target id="limitations" name="limitations" depends="noJunit, dist-all"
Expand Down
2 changes: 1 addition & 1 deletion src/META-INF/reaction.cdkdepends
Expand Up @@ -3,4 +3,4 @@ cdk-data.jar
cdk-core.jar
cdk-standard.jar
cdk-extra.jar

cdk-libio-cml.jar
5 changes: 5 additions & 0 deletions src/META-INF/test-reaction.cdkdepends
@@ -0,0 +1,5 @@
cdk-interfaces.jar
cdk-data.jar
cdk-core.jar
cdk-standard.jar
cdk-extra.jar
2 changes: 2 additions & 0 deletions src/META-INF/test-reaction.devellibdepends
@@ -0,0 +1,2 @@
junit.jar

5 changes: 5 additions & 0 deletions src/META-INF/test-reaction.libdepends
@@ -0,0 +1,5 @@
Jama-1.0.1.jar
jgrapht-0.5.3.jar
sjava-0.68.jar
vecmath1.2-1.14.jar
xom-1.0.jar
Expand Up @@ -43,7 +43,7 @@
/**
* @author Kai Hartmann
* @cdk.created 2004-02-20
* @cdk.module test-extra
* @cdk.module test-reaction
*/
public class ReactionBalancerTest extends CDKTestCase {

Expand Down
Expand Up @@ -22,7 +22,7 @@
/**
* TestSuite that runs a test for the ElectronImpactNBEReactionTest.
*
* @cdk.module test-extra
* @cdk.module test-reaction
*/

public class ElectronImpactNBEReactionTest extends CDKTestCase {
Expand Down
Expand Up @@ -22,7 +22,7 @@
/**
* TestSuite that runs a test for the ElectronImpactPDBReactionTest.
*
* @cdk.module test-extra
* @cdk.module test-reaction
*/

public class ElectronImpactPDBReactionTest extends CDKTestCase {
Expand Down
Expand Up @@ -7,7 +7,7 @@
/**
* TestSuite that runs all reactions tests.
*
* @cdk.module test-extra
* @cdk.module test-reaction
*/

public class ReactionTypeTest {
Expand Down

0 comments on commit 39b2a26

Please sign in to comment.