public void GetProjectionFromUserTest()
        {
            MapWindow.Interfaces.UserInteraction target = new clsUserInteraction(); // TODO: Initialize to an appropriate value
            string DialogCaption     = string.Empty;                                // TODO: Initialize to an appropriate value
            string DefaultProjection = string.Empty;                                // TODO: Initialize to an appropriate value
            string expected          = string.Empty;                                // TODO: Initialize to an appropriate value
            string actual;

            actual = target.GetProjectionFromUser(DialogCaption, DefaultProjection);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void GetColorRampTest()
        {
            MapWindow.Interfaces.UserInteraction target = new clsUserInteraction(); // TODO: Initialize to an appropriate value
            Color suggestedStart        = new Color();                              // TODO: Initialize to an appropriate value
            Color suggestedEnd          = new Color();                              // TODO: Initialize to an appropriate value
            Color selectedStart         = new Color();                              // TODO: Initialize to an appropriate value
            Color selectedStartExpected = new Color();                              // TODO: Initialize to an appropriate value
            Color selectedEnd           = new Color();                              // TODO: Initialize to an appropriate value
            Color selectedEndExpected   = new Color();                              // TODO: Initialize to an appropriate value
            bool  expected = false;                                                 // TODO: Initialize to an appropriate value
            bool  actual;

            actual = target.GetColorRamp(suggestedStart, suggestedEnd, out selectedStart, out selectedEnd);
            Assert.AreEqual(selectedStartExpected, selectedStart);
            Assert.AreEqual(selectedEndExpected, selectedEnd);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void clsUserInteractionConstructorTest()
        {
            clsUserInteraction target = new clsUserInteraction();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }