public static int GetBondCount(IReactionSet set)
        {
            int count = 0;

            foreach (var iReaction in set)
            {
                count += ReactionManipulator.GetBondCount(iReaction);
            }
            return(count);
        }
 public void TestGetBondCount_IReaction()
 {
     Assert.AreEqual(18, ReactionManipulator.GetBondCount(reaction));
 }