Skip to content

Commit

Permalink
Added tests for the isomorphism module to the proper suite
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Nov 7, 2011
1 parent 135edeb commit 657c3a7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/META-INF/test-isomorphism.cdkdepends
Expand Up @@ -4,3 +4,5 @@ cdk-core.jar
cdk-data.jar
cdk-test.jar
cdk-isomorphism.jar
cdk-standard.jar
cdk-nonotify.jar
Expand Up @@ -36,7 +36,7 @@
/**
* Checks the functionality of the <code>QueryAtomContainerCreator</code>.
*
* @cdk.module test-extra
* @cdk.module test-isomorphism
*/
public class QueryAtomContainerCreatorTest extends CDKTestCase {

Expand Down
Expand Up @@ -36,7 +36,7 @@
* Checks the functionality of the {@link org.openscience.cdk.isomorphism.matchers.RGroupList},
* in particular setting valid 'occurrence' strings.
*
* @cdk.module test-extra
* @cdk.module test-isomorphism
*/
public class RGroupListTest extends CDKTestCase {

Expand Down
Expand Up @@ -33,7 +33,7 @@
/**
* Checks the functionality of the IsomorphismTester
*
* @cdk.module test-extra
* @cdk.module test-isomorphism
*/
public class SymbolSetQueryAtomTest extends CDKTestCase
{
Expand Down
Expand Up @@ -24,6 +24,9 @@
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
import org.openscience.cdk.coverage.IsomorphismCoverageTest;
import org.openscience.cdk.isomorphism.matchers.QueryAtomContainerCreatorTest;
import org.openscience.cdk.isomorphism.matchers.RGroupListTest;
import org.openscience.cdk.isomorphism.matchers.SymbolSetQueryAtomTest;

/**
* TestSuite that runs all the tests for the CDK core module.
Expand All @@ -34,6 +37,9 @@
*/
@RunWith(value=Suite.class)
@SuiteClasses(value={
IsomorphismCoverageTest.class
IsomorphismCoverageTest.class,
RGroupListTest.class,
SymbolSetQueryAtomTest.class,
QueryAtomContainerCreatorTest.class
})
public class MisomorphismTests {}

0 comments on commit 657c3a7

Please sign in to comment.