19package denoptim.molecularmodeling.zmatrix;
21import static org.junit.jupiter.api.Assertions.assertEquals;
22import static org.junit.jupiter.api.Assertions.assertNotEquals;
24import org.junit.jupiter.api.Test;
39 null,
null,
null,
null);
41 null,
null,
null,
null);
53 assertEquals(bond1, bond1);
54 assertEquals(bond1, bond2);
55 assertNotEquals(bond1,
null);
58 assertNotEquals(bond1, bond2);
67 null,
null,
null,
null);
69 null,
null,
null,
null);
75 "Bonds with reversed order should have same hash code");
Representation of an atom in the ZMatrix.
Representation of a bond in the ZMatrix.
ZMatrixAtom getAtm2()
Get the second atom in the bond.
void setAtm1(ZMatrixAtom atm1)
Set the first atom in the bond.
Unit test for ZMatrixAtom.
ZMatrixBond getTestZMatrixBond()
void testZMatrixBondHashCode()