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

            Assert.AreEqual(expected, actual);
        }