⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mnonotifytests.java

📁 化学图形处理软件
💻 JAVA
字号:
/* $RCSfile$ * $Author: egonw $ * $Date: 2006-04-06 21:14:11 +0200 (Thu, 06 Apr 2006) $ * $Revision: 5899 $ * * 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.nonotify.NNAminoAcidTest;import org.openscience.cdk.test.nonotify.NNAtomContainerTest;import org.openscience.cdk.test.nonotify.NNAtomTest;import org.openscience.cdk.test.nonotify.NNAtomTypeTest;import org.openscience.cdk.test.nonotify.NNBioPolymerTest;import org.openscience.cdk.test.nonotify.NNBondTest;import org.openscience.cdk.test.nonotify.NNChemFileTest;import org.openscience.cdk.test.nonotify.NNChemModelTest;import org.openscience.cdk.test.nonotify.NNChemObjectBuilderTest;import org.openscience.cdk.test.nonotify.NNChemObjectTest;import org.openscience.cdk.test.nonotify.NNChemSequenceTest;import org.openscience.cdk.test.nonotify.NNCrystalTest;import org.openscience.cdk.test.nonotify.NNElectronContainerTest;import org.openscience.cdk.test.nonotify.NNElementTest;import org.openscience.cdk.test.nonotify.NNIsotopeTest;import org.openscience.cdk.test.nonotify.NNLonePairTest;import org.openscience.cdk.test.nonotify.NNMoleculeTest;import org.openscience.cdk.test.nonotify.NNMonomerTest;import org.openscience.cdk.test.nonotify.NNPolymerTest;import org.openscience.cdk.test.nonotify.NNPseudoAtomTest;import org.openscience.cdk.test.nonotify.NNReactionTest;import org.openscience.cdk.test.nonotify.NNRingSetTest;import org.openscience.cdk.test.nonotify.NNRingTest;import org.openscience.cdk.test.nonotify.NNAtomContainerSetTest;import org.openscience.cdk.test.nonotify.NNMoleculeSetTest;import org.openscience.cdk.test.nonotify.NNReactionSetTest;import org.openscience.cdk.test.nonotify.NNSingleElectronTest;import org.openscience.cdk.test.nonotify.NNStrandTest;/** * TestSuite that runs the nonotify tests. * * @cdk.module  test-nonotify * @cdk.depends log4j.jar * @cdk.depends junit.jar */public class MnonotifyTests {        public static Test suite () {        TestSuite suite= new TestSuite("The cdk.debug Tests");                suite.addTest(NNChemObjectBuilderTest.suite());                suite.addTest(NNAminoAcidTest.suite());        suite.addTest(NNAtomContainerTest.suite());        suite.addTest(NNAtomTest.suite());        suite.addTest(NNAtomTypeTest.suite());        suite.addTest(NNBioPolymerTest.suite());        suite.addTest(NNBondTest.suite());        suite.addTest(NNChemObjectTest.suite());        suite.addTest(NNChemFileTest.suite());        suite.addTest(NNChemModelTest.suite());        suite.addTest(NNChemSequenceTest.suite());        suite.addTest(NNCrystalTest.suite());        suite.addTest(NNElectronContainerTest.suite());        suite.addTest(NNElementTest.suite());        suite.addTest(NNIsotopeTest.suite());        suite.addTest(NNLonePairTest.suite());        suite.addTest(NNMoleculeTest.suite());        suite.addTest(NNMonomerTest.suite());        suite.addTest(NNPseudoAtomTest.suite());        suite.addTest(NNPolymerTest.suite());        suite.addTest(NNReactionTest.suite());        suite.addTest(NNRingTest.suite());        suite.addTest(NNRingSetTest.suite());        suite.addTest(NNAtomContainerSetTest.suite());        suite.addTest(NNMoleculeSetTest.suite());        suite.addTest(NNReactionSetTest.suite());        suite.addTest(NNSingleElectronTest.suite());        suite.addTest(NNStrandTest.suite());                return suite;    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -