Пример #1
0
        public void buildGraphTest()
        {
            Image        myimage   = new Bitmap("../../testImage.jpg");
            FloorPlan    floorPlan = new FloorPlan(myimage, 5);   // TODO: Initialize to an appropriate value
            QGPathFinder target    = new QGPathFinder(floorPlan); // TODO: Initialize to an appropriate value
            int          expected  = 6354;                        // TODO: Initialize to an appropriate value
            int          actual;

            actual = target.buildGraph().VertexCount;
            Assert.AreEqual(expected, actual);
        }