public void RemovedPartyCallEventArgsConstructorTest()
        {
            BaseCreature creatureParty       = null; // TODO: 初始化为适当的值
            BaseCreature creature            = null; // TODO: 初始化为适当的值
            RemovedPartyCallEventArgs target = new RemovedPartyCallEventArgs(creatureParty, creature);

            Assert.Inconclusive("TODO: 实现用来验证目标的代码");
        }
        public void RemovePartyTest()
        {
            BaseCreature creatureParty       = null;                                                   // TODO: 初始化为适当的值
            BaseCreature creature            = null;                                                   // TODO: 初始化为适当的值
            RemovedPartyCallEventArgs target = new RemovedPartyCallEventArgs(creatureParty, creature); // TODO: 初始化为适当的值
            BaseCreature actual;

            actual = target.RemoveParty;
            Assert.Inconclusive("验证此测试方法的正确性。");
        }