예제 #1
0
        public void PointImageSchemeConstructorTest()
        {
            long             lyrHandle = 0; // TODO: Initialize to an appropriate value
            PointImageScheme target    = new PointImageScheme(lyrHandle);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void PointImageSchemeFormConstructorTest()
        {
            IWindowsFormsEditorService DialogProvider = null; // TODO: Initialize to an appropriate value
            PointImageScheme           Scheme         = null; // TODO: Initialize to an appropriate value
            PointImageSchemeForm       target         = new PointImageSchemeForm(DialogProvider, Scheme);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
예제 #3
0
        public void ClearTest()
        {
            long             lyrHandle = 0;                               // TODO: Initialize to an appropriate value
            PointImageScheme target    = new PointImageScheme(lyrHandle); // TODO: Initialize to an appropriate value

            target.Clear();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
예제 #4
0
        public void NumberItemsTest()
        {
            long             lyrHandle = 0;                               // TODO: Initialize to an appropriate value
            PointImageScheme target    = new PointImageScheme(lyrHandle); // TODO: Initialize to an appropriate value
            int actual;

            actual = target.NumberItems;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void RetvalTest()
        {
            IWindowsFormsEditorService DialogProvider = null;                                             // TODO: Initialize to an appropriate value
            PointImageScheme           Scheme         = null;                                             // TODO: Initialize to an appropriate value
            PointImageSchemeForm       target         = new PointImageSchemeForm(DialogProvider, Scheme); // TODO: Initialize to an appropriate value
            PointImageScheme           actual;

            actual = target.Retval;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
예제 #6
0
        public void LastKnownLayerHandleTest()
        {
            long             lyrHandle = 0;                               // TODO: Initialize to an appropriate value
            PointImageScheme target    = new PointImageScheme(lyrHandle); // TODO: Initialize to an appropriate value
            long             expected  = 0;                               // TODO: Initialize to an appropriate value
            long             actual;

            target.LastKnownLayerHandle = expected;
            actual = target.LastKnownLayerHandle;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void WizardMenuTest()
        {
            IWindowsFormsEditorService DialogProvider = null;                                             // TODO: Initialize to an appropriate value
            PointImageScheme           Scheme         = null;                                             // TODO: Initialize to an appropriate value
            PointImageSchemeForm       target         = new PointImageSchemeForm(DialogProvider, Scheme); // TODO: Initialize to an appropriate value
            ContextMenuStrip           expected       = null;                                             // TODO: Initialize to an appropriate value
            ContextMenuStrip           actual;

            target.WizardMenu = expected;
            actual            = target.WizardMenu;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void cmbFieldTest()
        {
            IWindowsFormsEditorService DialogProvider = null;                                             // TODO: Initialize to an appropriate value
            PointImageScheme           Scheme         = null;                                             // TODO: Initialize to an appropriate value
            PointImageSchemeForm       target         = new PointImageSchemeForm(DialogProvider, Scheme); // TODO: Initialize to an appropriate value
            ComboBox expected = null;                                                                     // TODO: Initialize to an appropriate value
            ComboBox actual;

            target.cmbField = expected;
            actual          = target.cmbField;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void itmsTest()
        {
            IWindowsFormsEditorService DialogProvider = null;                                             // TODO: Initialize to an appropriate value
            PointImageScheme           Scheme         = null;                                             // TODO: Initialize to an appropriate value
            PointImageSchemeForm       target         = new PointImageSchemeForm(DialogProvider, Scheme); // TODO: Initialize to an appropriate value
            TableLayoutPanel           expected       = null;                                             // TODO: Initialize to an appropriate value
            TableLayoutPanel           actual;

            target.itms = expected;
            actual      = target.itms;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void mnuContinuousRampTest()
        {
            IWindowsFormsEditorService DialogProvider = null;                                             // TODO: Initialize to an appropriate value
            PointImageScheme           Scheme         = null;                                             // TODO: Initialize to an appropriate value
            PointImageSchemeForm       target         = new PointImageSchemeForm(DialogProvider, Scheme); // TODO: Initialize to an appropriate value

            System.Windows.Forms.ToolStripMenuItem expected = null;                                       // TODO: Initialize to an appropriate value
            System.Windows.Forms.ToolStripMenuItem actual;
            target.mnuContinuousRamp = expected;
            actual = target.mnuContinuousRamp;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
예제 #11
0
        public void VisibleTest()
        {
            long             lyrHandle  = 0;                               // TODO: Initialize to an appropriate value
            PointImageScheme target     = new PointImageScheme(lyrHandle); // TODO: Initialize to an appropriate value
            string           FieldValue = string.Empty;                    // TODO: Initialize to an appropriate value
            bool             expected   = false;                           // TODO: Initialize to an appropriate value
            bool             actual;

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