public void Test_SaveAndDeleteConditionTrack()
        {
            bool returnVal;

            objNewConditionTrack.SaveConditionTrack();

            Assert.IsTrue(objNewConditionTrack.ConditionTrackID != 0);

            returnVal = objNewConditionTrack.DeleteConditionTrack();

            Assert.IsTrue(returnVal && objNewConditionTrack.DeleteOK);
        }