public void testElfBlacksmithWithSpear()
        {
            var blacksmith = new ElfBlacksmith();
            var weapon     = blacksmith.manufactureWeapon(WeaponType.SPEAR);

            verifyWeapon(weapon, WeaponType.SPEAR, typeof(ElfWeapon));
        }
        public void testElfBlacksmithWithShortSword()
        {
            var blacksmith = new ElfBlacksmith();
            var weapon     = blacksmith.manufactureWeapon(WeaponType.SHORT_SWORD);

            verifyWeapon(weapon, WeaponType.SHORT_SWORD, typeof(ElfWeapon));
        }