Exemple #1
0
        public void MonsterAttackTechniqueHitPointsTest()
        {
            AttackTechnique attackTechnique = new MonsterAttackTechnique();

            Assert.AreEqual(10, attackTechnique.HitPoints);
        }
Exemple #2
0
        public void MonsterAttackTechniqueCanAttackMonsterTest()
        {
            AttackTechnique attackTechnique = new MonsterAttackTechnique();

            Assert.IsTrue(attackTechnique.CanAttack(Role.SURVIVOR));
        }
Exemple #3
0
        public void NewMonsterAttackTechniqueTest()
        {
            AttackTechnique attackTechnique = new MonsterAttackTechnique();

            Assert.IsNotNull(attackTechnique);
        }