public void Test_SaveAndDeleteCharacterSkill()
        {
            bool returnVal;

            objNewCharacterSkill.SaveCharacterSkill();

            CharacterSkill objTestCharSkill = new CharacterSkill();

            objTestCharSkill.GetCharacterSkill(objNewCharacterSkill.CharacterID, objNewCharacterSkill.SkillID);

            Assert.IsNotNull(objNewCharacterSkill.objSkill);

            returnVal = objNewCharacterSkill.DeleteCharacterSkill();

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