コード例 #1
0
        public void Apply_NotACharacter_Test()
        {
            var entity     = Mock.Of <IEntity>();
            var undetected = new Undetected();

            undetected.Apply(entity);
            Assert.IsTrue(true); // If we made it here without exception then the test passed
        }
コード例 #2
0
        public void Remove_NoConditions_Test()
        {
            var character  = CreateMockCharacter();
            var undetected = new Undetected();

            undetected.Apply(character);
            undetected.Remove(character);
            Assert.AreEqual(0, character.Conditions.Count);
        }
コード例 #3
0
        public void Apply_Character_WithExistingUndetectedCondition_Test()
        {
            var character = CreateMockCharacter();

            character.Conditions.Add(new Undetected());
            var undetected = new Undetected();

            undetected.Apply(character);
        }
コード例 #4
0
        public void Apply_Character_NoConditions_Test()
        {
            var character  = CreateMockCharacter();
            var undetected = new Undetected();

            undetected.Apply(character);
            Assert.AreEqual(EntityIds.UNDETECTED_CONDITION_ID, character.Conditions[0].Id);
            Assert.AreSame(undetected, character.Conditions[0]);
            Assert.AreEqual(ConditionGroup.DegreesOfDetection, character.Conditions[0].Group);
        }