コード例 #1
0
        public void Test_SaveAndDeleteArmorType()
        {
            bool returnVal;

            objNewArmorType.SaveArmorType();

            Assert.IsTrue(objNewArmorType.ArmorTypeID != 0);

            returnVal = objNewArmorType.DeleteArmorType();

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