public void Test_SaveAndDeleteSpeed()
        {
            bool returnVal;

            objNewSpeed.SaveSpeed();

            Assert.IsTrue(objNewSpeed.SpeedID != 0);

            returnVal = objNewSpeed.DeleteSpeed();

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