Exemplo n.º 1
0
        public void GetZDRenKouDetailTest()
        {
            ZDRenKou          expected = new ZDRenKou();
            ZDRenKou          actual;
            GridSelectService gridSelectService = new GridSelectService();

            actual = gridSelectService.GetZDRenKouDetail("");
            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 2
0
        public void GetAllGridsTest()
        {
            List <GridInfo>   expected = null; // TODO: 初始化为适当的值
            List <GridInfo>   actual;
            GridSelectService gridSelectService = new GridSelectService();

            actual = gridSelectService.GetAllGrids();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("验证此测试方法的正确性。");
        }
Exemplo n.º 3
0
 public PoliceManMigrate(PolygonSelectService polyService, GridSelectService gridService, DBOperate dbOper)
 {
     this.polyService = polyService;
     this.dbOper      = dbOper;
     this.gridService = gridService;
 }
Exemplo n.º 4
0
 public CsMigrate(PolygonSelectService polyService, DBOperate dbOper)
 {
     this.polyService = polyService;
     this.dbOper      = dbOper;
     this.gridService = new GridSelectService(); //todo 应该把场所详细信息接口复制一份到polyselect下
 }