예제 #1
0
        public void UpdatedNameEventArgsConstructorTest()
        {
            string               strName  = string.Empty; // TODO: 初始化为适当的值
            BaseCreature         creature = null;         // TODO: 初始化为适当的值
            UpdatedNameEventArgs target   = new UpdatedNameEventArgs(strName, creature);

            Assert.Inconclusive("TODO: 实现用来验证目标的代码");
        }
예제 #2
0
        public void OldNameTest()
        {
            string               strName  = string.Empty;                                // TODO: 初始化为适当的值
            BaseCreature         creature = null;                                        // TODO: 初始化为适当的值
            UpdatedNameEventArgs target   = new UpdatedNameEventArgs(strName, creature); // TODO: 初始化为适当的值
            string               actual;

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