public void TestInitializer() { parentMap = new MapBody(); parentMap.initializeMap(size, size); childMap = new MapBody(); childMap.setParent(parentMap); }
public Map(MapManager mm) { _mapManager = mm; _mapBody = new MapBody(); }
public void testIfNewMapIsNull() { IMap baseObject = new MapBody(); MapHolder mapHolder = baseObject.getCurentMapView(); Assert.IsNull(mapHolder); }