Пример #1
0
        public void TestInitializer()
        {
            parentMap = new MapBody();
            parentMap.initializeMap(size, size);

            childMap = new MapBody();
            childMap.setParent(parentMap);
        }
Пример #2
0
 public Map(MapManager mm)
 {
     _mapManager = mm;
     _mapBody = new MapBody();
 }
Пример #3
0
        public void testIfNewMapIsNull()
        {
            IMap baseObject = new MapBody();
            MapHolder mapHolder = baseObject.getCurentMapView();

            Assert.IsNull(mapHolder);
        }