📄 mosjvmtstests.java
字号:
/* $RCSfile$ * $Author: egonw $ * $Date: 2006-04-06 15:24:58 +0200 (Thu, 06 Apr 2006) $ * $Revision: 5889 $ * * Copyright (C) 1997-2007 The Chemistry Development Kit (CDK) project * * Contact: cdk-devel@lists.sourceforge.net * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * 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.test;import junit.framework.Test;import junit.framework.TestSuite;import org.openscience.cdk.test.aromaticity.HueckelAromaticityDetectorTest;import org.openscience.cdk.test.atomtype.HybridizationMatcherTest;import org.openscience.cdk.test.atomtype.HybridizationStateATMatcherTest;import org.openscience.cdk.test.atomtype.MM2AtomTypeMatcherTest;import org.openscience.cdk.test.atomtype.MMFF94AtomTypeMatcherTest;import org.openscience.cdk.test.charges.GasteigerMarsiliPartialChargesTest;import org.openscience.cdk.test.charges.InductivePartialChargesTest;import org.openscience.cdk.test.charges.MMFF94PartialChargesTest;import org.openscience.cdk.test.dict.DictDBTest;import org.openscience.cdk.test.dict.DictRefTest;import org.openscience.cdk.test.fingerprint.FingerprinterTest;import org.openscience.cdk.test.geometry.RDFCalculatorTest;import org.openscience.cdk.test.geometry.alignment.KabschAlignmentTest;import org.openscience.cdk.test.index.CASNumberTest;import org.openscience.cdk.test.layout.HydrogenPlacerTest;import org.openscience.cdk.test.layout.OverlapResolverTest;import org.openscience.cdk.test.layout.StructureDiagramGeneratorTest;import org.openscience.cdk.test.layout.TemplateHandlerTest;import org.openscience.cdk.test.similarity.TanimotoTest;/** * This TestSuite is aimed to make a nice test suite for testing * open source Java Virtual machines, like JamVM, Cacao and Kaffe. * These normally use Classpath to provide the Java libraries. * * @cdk.module test-osjvmts * @cdk.depends log4j.jar * @cdk.depends junit.jar */public class MosjvmtsTests { public static Test suite() { TestSuite suite = new TestSuite("The Open Source ChemoInformatics JVM Test Suite"); String benchmark = System.getProperty("benchmark", "I"); if ("I".equals(benchmark)){ // Bench Mark I tests suite.addTest(MdataTests.suite()); suite.addTest(MdatadebugTests.suite()); } else if ("II".equals(benchmark)){ // Bench Mark II tests suite.addTest(McoreTests.suite()); } else if ("III".equals(benchmark)){// Bench Mark III tests suite.addTest(MstandardTests.suite()); } else if ("skip".equals(benchmark)){ // Package Test Suites suite.addTest(MioTests.suite()); // Individual Tests // from cdk.test.aromaticity suite.addTest(HueckelAromaticityDetectorTest.suite()); // from cdk.test.atomtype suite.addTest(HybridizationStateATMatcherTest.suite()); suite.addTest(HybridizationMatcherTest.suite()); suite.addTest(MMFF94AtomTypeMatcherTest.suite()); suite.addTest(MM2AtomTypeMatcherTest.suite()); // from cdk.test.dict suite.addTest(DictRefTest.suite()); suite.addTest(DictDBTest.suite()); // from cdk.test.charges suite.addTest(GasteigerMarsiliPartialChargesTest.suite()); suite.addTest(MMFF94PartialChargesTest.suite()); suite.addTest(InductivePartialChargesTest.suite()); // from cdk.test.fingerprint suite.addTest(FingerprinterTest.suite()); // from cdk.test.geometry suite.addTest(RDFCalculatorTest.suite()); // from cdk.test.geometry.align suite.addTest(KabschAlignmentTest.suite()); // from cdk.test.index suite.addTest(CASNumberTest.suite()); // from cdk.test.layout suite.addTest(StructureDiagramGeneratorTest.suite()); suite.addTest(HydrogenPlacerTest.suite()); suite.addTest(OverlapResolverTest.suite()); suite.addTest(TemplateHandlerTest.suite()); // from cdk.test.similarity suite.addTest(TanimotoTest.suite()); // from cdk.test.smiles suite.addTest(MsmilesTests.suite()); // from cdk.test.qsar suite.addTest(MqsarTests.suite()); } return suite; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -