Skip to content

Commit

Permalink
Added the new test class to the module test suite
Browse files Browse the repository at this point in the history
Change-Id: Ief83abc19fca524303dc05e79cb35b1f33bd645e
  • Loading branch information
egonw committed Jul 29, 2012
1 parent dd45524 commit 428623d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
Expand Up @@ -38,7 +38,7 @@
*
* @author danielszisz
* @version 04/16/2012
* @cdk.module test-builder3d
* @cdk.module test-forcefield
*/
public class MMFF94BasedParameterSetReaderTest {

Expand Down
12 changes: 4 additions & 8 deletions src/test/org/openscience/cdk/modulesuites/MforcefieldTests.java
@@ -1,9 +1,4 @@
/* $RCSfile$
* $Author$
* $Date$
* $Revision$
*
* Copyright (C) 1997-2007 The Chemistry Development Kit (CDK) project
/* Copyright (C) 1997-2007 The Chemistry Development Kit (CDK) project
*
* Contact: cdk-devel@lists.sourceforge.net
*
Expand All @@ -21,14 +16,14 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/

package org.openscience.cdk.modulesuites;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
import org.openscience.cdk.charges.MMFF94PartialChargesTest;
import org.openscience.cdk.coverage.ForcefieldCoverageTest;
import org.openscience.cdk.modeling.builder3d.MMFF94BasedParameterSetReaderTest;

/**
* TestSuite that runs all the sample tests.
Expand All @@ -38,6 +33,7 @@
@RunWith(value=Suite.class)
@SuiteClasses(value={
ForcefieldCoverageTest.class,
MMFF94PartialChargesTest.class
MMFF94PartialChargesTest.class,
MMFF94BasedParameterSetReaderTest.class
})
public class MforcefieldTests {}

0 comments on commit 428623d

Please sign in to comment.