public void testOrcBlacksmithWithAxe()
        {
            var blacksmith = new OrcBlacksmith();
            var weapon     = blacksmith.manufactureWeapon(WeaponType.AXE);

            verifyWeapon(weapon, WeaponType.AXE, typeof(OrcWeapon));
        }
        public void testOrcBlacksmithWithSpear()
        {
            var blacksmith = new OrcBlacksmith();
            var weapon     = blacksmith.manufactureWeapon(WeaponType.SPEAR);

            verifyWeapon(weapon, WeaponType.SPEAR, typeof(OrcWeapon));
        }