public void WitchHunterCaptainWithSkillMightyBlow()
        {
            var warrior = new WitchHunterCaptain();

            warrior.AddSkill(new MightyBlow());

            Assert.AreEqual(4, warrior.Strength.CalculatedValue, "Strength");

            Assert.AreEqual("MightyBlow", warrior.Skills.ElementAt(0).SkillName());

            Assert.AreEqual(warrior.Skills.ElementAt(0).Description,
                            "The warrior knows how to use his strength to maximum effect and has a +1 Strength bonus in close combat.");
        }