📄 idcreatortest.java
字号:
/* $Revision: 8106 $ $Author: egonw $ $Date: 2007-03-13 23:08:16 +0000 (Di, 13 Mrz 2007) $ * * 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.tools;import java.util.List;import junit.framework.Test;import junit.framework.TestSuite;import org.openscience.cdk.Atom;import org.openscience.cdk.Bond;import org.openscience.cdk.Molecule;import org.openscience.cdk.MoleculeSet;import org.openscience.cdk.interfaces.IMoleculeSet;import org.openscience.cdk.test.CDKTestCase;import org.openscience.cdk.tools.IDCreator;import org.openscience.cdk.tools.manipulator.AtomContainerManipulator;import org.openscience.cdk.tools.manipulator.MoleculeSetManipulator;/** * @cdk.module test-standard */public class IDCreatorTest extends CDKTestCase { public IDCreatorTest(String name) { super(name); } public void setUp() {}; public static Test suite() { return new TestSuite(IDCreatorTest.class); } public void testCreateIDs_IChemObject() { Molecule mol = new Molecule(); Atom atom1 = new Atom("C"); Atom atom2 = new Atom("C"); mol.addAtom(atom1); mol.addAtom(atom2); Bond bond = new Bond(atom1, atom2); mol.addBond(bond); IDCreator.createIDs(mol); assertEquals("a1", atom1.getID()); assertEquals("b1", bond.getID()); List ids = AtomContainerManipulator.getAllIDs(mol); assertEquals(4, ids.size()); } public void testKeepingIDs() { Molecule mol = new Molecule(); Atom atom = new Atom("C"); atom.setID("atom1"); mol.addAtom(atom); IDCreator.createIDs(mol); assertEquals("atom1", atom.getID()); assertNotNull(mol.getID()); List ids = AtomContainerManipulator.getAllIDs(mol); assertEquals(2, ids.size()); } public void testNoDuplicateCreation() { Molecule mol = new Molecule(); Atom atom1 = new Atom("C"); Atom atom2 = new Atom("C"); atom1.setID("a1"); mol.addAtom(atom2); mol.addAtom(atom1); IDCreator.createIDs(mol); assertEquals("a2", atom2.getID()); List ids = AtomContainerManipulator.getAllIDs(mol); assertEquals(3, ids.size()); } /** * @cdk.bug 1455341 */ public void testCallingTwice() { IMoleculeSet molSet = new MoleculeSet(); Molecule mol = new Molecule(); Atom atom0 = new Atom("C"); Atom atom2 = new Atom("C"); atom0.setID("a1"); mol.addAtom(atom2); mol.addAtom(atom0); molSet.addAtomContainer(mol); IDCreator.createIDs(molSet); List ids = MoleculeSetManipulator.getAllIDs(molSet); assertEquals(4, ids.size()); mol = new Molecule(); Atom atom1 = new Atom("C"); atom2 = new Atom("C"); atom1.setID("a2"); mol.addAtom(atom2); mol.addAtom(atom1); molSet.addAtomContainer(mol); IDCreator.createIDs(molSet); ids = MoleculeSetManipulator.getAllIDs(molSet); assertEquals(7, ids.size()); mol = new Molecule(); atom1 = new Atom("C"); atom2 = new Atom("C"); mol.addAtom(atom2); mol.addAtom(atom1); molSet.addAtomContainer(mol); atom0.setID("atomX"); ids = MoleculeSetManipulator.getAllIDs(molSet); assertFalse(ids.contains("a1")); IDCreator.createIDs(molSet); List idsAfter = MoleculeSetManipulator.getAllIDs(molSet); assertTrue(idsAfter.contains("a1")); assertEquals(10, idsAfter.size()); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -