示例#1
0
文件: MapTest.cs 项目: marmur/jm_mrs
        public void TestInitializer()
        {
            parentMap = new MapBody();
            parentMap.initializeMap(size, size);

            childMap = new MapBody();
            childMap.setParent(parentMap);
        }
示例#2
0
文件: Map.cs 项目: marmur/jm_mrs
 public Map(MapManager mm)
 {
     _mapManager = mm;
     _mapBody = new MapBody();
 }
示例#3
0
文件: MapTest.cs 项目: marmur/jm_mrs
        public void testIfNewMapIsNull()
        {
            IMap baseObject = new MapBody();
            MapHolder mapHolder = baseObject.getCurentMapView();

            Assert.IsNull(mapHolder);
        }