示例#1
0
 public void PictureTest()
 {
     MapWindow.PreviewMap target   = new MapWindow.PreviewMap(); // TODO: Initialize to an appropriate value
     System.Drawing.Image expected = null;                       // TODO: Initialize to an appropriate value
     System.Drawing.Image actual;
     target.Picture = expected;
     actual         = target.Picture;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
示例#2
0
        public void LocatorBoxColorTest()
        {
            MapWindow.PreviewMap target = new MapWindow.PreviewMap(); // TODO: Initialize to an appropriate value
            Color expected = new Color();                             // TODO: Initialize to an appropriate value
            Color actual;

            target.LocatorBoxColor = expected;
            actual = target.LocatorBoxColor;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }