Example #1
0
        public void GivenIHaveAZone(string mapType)
        {
            var zone = ZoneHelper.BuildMapFromMapType(mapType);

            ScenarioContext.Current.Add(string.Format("{0} map", mapType), zone);
        }
Example #2
0
        public void GivenThePlayerIsInANorthToSouthHallway()
        {
            const string mapType = "North to South Hallway";

            ScenarioContext.Current.Add(string.Format("{0} map", mapType), ZoneHelper.BuildMapFromMapType(mapType));
        }