public void GetMapLocationTest()
 {
     DungeonService target = new DungeonService(); // TODO: Initialize to an appropriate value
     int x = 0; // TODO: Initialize to an appropriate value
     int y = 0; // TODO: Initialize to an appropriate value
     DungeonMap expected = null; // TODO: Initialize to an appropriate value
     DungeonMap actual;
     actual = target.GetMapLocation(x, y);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void DungeonServiceConstructorTest()
 {
     DungeonService target = new DungeonService();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }