예제 #1
0
        public void TestCheckIfAllLigandsAreDifferentFalse()
        {
            var sameLigands = new ILigand[] { ligands[0], ligands[0], ligands[1], ligands[2] };

            Assert.IsFalse(CIPTool.CheckIfAllLigandsAreDifferent(sameLigands));
        }
예제 #2
0
 public void TestCheckIfAllLigandsAreDifferent()
 {
     Assert.IsTrue(CIPTool.CheckIfAllLigandsAreDifferent(ligands));
 }