Skip to content

Commit

Permalink
More slow tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Oct 9, 2016
1 parent 07d8b53 commit 9449cb7
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -33,10 +33,12 @@
import org.junit.Assert;
import org.junit.Assume;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.openscience.cdk.CDKTestCase;
import org.openscience.cdk.ChemFile;
import org.openscience.cdk.ChemObject;
import org.openscience.cdk.DefaultChemObjectBuilder;
import org.openscience.cdk.SlowTest;
import org.openscience.cdk.exception.CDKException;
import org.openscience.cdk.geometry.GeometryUtil;
import org.openscience.cdk.interfaces.IAtom;
Expand Down Expand Up @@ -129,6 +131,7 @@ public void testModelBuilder3D_c1ccccc1C0() throws Exception {
}

@Test
@Category(SlowTest.class)
public void testModelBuilder3D_Konstanz() throws Exception {
Assume.assumeTrue(runSlowTests());

Expand Down Expand Up @@ -204,6 +207,7 @@ public void testModelBuilder3D_CCCCCCCCCC_with2d() throws Exception {
* @cdk.bug 1315823
*/
@Test
@Category(SlowTest.class)
public void testModelBuilder3D_232() throws Exception {
Assume.assumeTrue(runSlowTests());

Expand Down Expand Up @@ -360,6 +364,7 @@ public void testModel3D_bug_1610997() throws Exception {
* @cdk.bug 1241421
*/
@Test
@Category(SlowTest.class)
public void testModelBuilder3D_bug_1241421() throws Exception {
ModelBuilder3D mb3d = ModelBuilder3D.getInstance(DefaultChemObjectBuilder.getInstance());
String filename = "data/mdl/bug1241421.mol";
Expand All @@ -374,6 +379,7 @@ public void testModelBuilder3D_bug_1241421() throws Exception {
}

@Test
@Category(SlowTest.class)
public void testModelBuilder3D_reserpine() throws Exception {
ModelBuilder3D mb3d = ModelBuilder3D.getInstance(DefaultChemObjectBuilder.getInstance());
String filename = "data/mdl/reserpine.mol";
Expand Down

0 comments on commit 9449cb7

Please sign in to comment.