Пример #1
0
        public void getTileByIndexTest()
        {
            Image     myimage   = new Bitmap("../../testImage.jpg");
            FloorPlan floorPlan = new FloorPlan(myimage, 5); // TODO: Initialize to an appropriate value
            String    index     = "1_1";                     // TODO: Initialize to an appropriate value
            FloorTile expected  = floorPlan.getTile(1, 1);   // TODO: Initialize to an appropriate value
            FloorTile actual;

            actual = QGPathFinder.getTileByIndex(floorPlan, index);
            Assert.AreEqual(expected, actual);
        }