public void PointSizeControlConstructorTest()
        {
            IWindowsFormsEditorService DialogProvider = null;  // TODO: Initialize to an appropriate value
            tkPointType      pointType    = new tkPointType(); // TODO: Initialize to an appropriate value
            double           InitialValue = 0F;                // TODO: Initialize to an appropriate value
            PointSizeControl target       = new PointSizeControl(DialogProvider, pointType, InitialValue);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void PointTypeTest()
        {
            Layer       target   = new Layer();       // TODO: Initialize to an appropriate value
            tkPointType expected = new tkPointType(); // TODO: Initialize to an appropriate value
            tkPointType actual;

            target.PointType = expected;
            actual           = target.PointType;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void SelectedSizeTest()
        {
            IWindowsFormsEditorService DialogProvider = null;                                              // TODO: Initialize to an appropriate value
            tkPointType      pointType    = new tkPointType();                                             // TODO: Initialize to an appropriate value
            double           InitialValue = 0F;                                                            // TODO: Initialize to an appropriate value
            PointSizeControl target       = new PointSizeControl(DialogProvider, pointType, InitialValue); // TODO: Initialize to an appropriate value
            int actual;

            actual = target.SelectedSize;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #4
0
        public void PointStyleTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            tkPointType expected    = new tkPointType();            // TODO: Initialize to an appropriate value
            tkPointType actual;

            target.PointStyle = expected;
            actual            = target.PointStyle;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #5
0
        public void AddLayerTest()
        {
            MapWindow.Layers target              = new MapWindow.Layers(); // TODO: Initialize to an appropriate value
            object           ObjectOrFilename    = null;                   // TODO: Initialize to an appropriate value
            string           LayerName           = string.Empty;           // TODO: Initialize to an appropriate value
            int             Group                = 0;                      // TODO: Initialize to an appropriate value
            bool            LayerVisible         = false;                  // TODO: Initialize to an appropriate value
            int             Color                = 0;                      // TODO: Initialize to an appropriate value
            int             OutlineColor         = 0;                      // TODO: Initialize to an appropriate value
            bool            DrawFill             = false;                  // TODO: Initialize to an appropriate value
            float           LineOrPointSize      = 0F;                     // TODO: Initialize to an appropriate value
            tkPointType     PointType            = new tkPointType();      // TODO: Initialize to an appropriate value
            GridColorScheme GrdColorScheme       = null;                   // TODO: Initialize to an appropriate value
            bool            LegendVisible        = false;                  // TODO: Initialize to an appropriate value
            bool            PositionFromSelected = false;                  // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.Layer[] expected = null;                  // TODO: Initialize to an appropriate value
            MapWindow.Interfaces.Layer[] actual;
            actual = target.AddLayer(ObjectOrFilename, LayerName, Group, LayerVisible, Color, OutlineColor, DrawFill, LineOrPointSize, PointType, GrdColorScheme, LegendVisible, PositionFromSelected);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }