public void rdOverwriteTest()
        {
            frmProjMismatch target   = new frmProjMismatch(); // TODO: Initialize to an appropriate value
            RadioButton     expected = null;                  // TODO: Initialize to an appropriate value
            RadioButton     actual;

            target.rdOverwrite = expected;
            actual             = target.rdOverwrite;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void chbDifferingProj_UseForSessionTest()
        {
            frmProjMismatch target   = new frmProjMismatch(); // TODO: Initialize to an appropriate value
            CheckBox        expected = null;                  // TODO: Initialize to an appropriate value
            CheckBox        actual;

            target.chbDifferingProj_UseForSession = expected;
            actual = target.chbDifferingProj_UseForSession;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void DiffProjectionLabelTest()
        {
            frmProjMismatch target   = new frmProjMismatch(); // TODO: Initialize to an appropriate value
            Label           expected = null;                  // TODO: Initialize to an appropriate value
            Label           actual;

            target.DiffProjectionLabel = expected;
            actual = target.DiffProjectionLabel;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void grpNoLayerProjectionTest()
        {
            frmProjMismatch target   = new frmProjMismatch(); // TODO: Initialize to an appropriate value
            GroupBox        expected = null;                  // TODO: Initialize to an appropriate value
            GroupBox        actual;

            target.grpNoLayerProjection = expected;
            actual = target.grpNoLayerProjection;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void TestProjectionTest()
        {
            frmProjMismatch target              = new frmProjMismatch(); // TODO: Initialize to an appropriate value
            object          newLayer            = null;                  // TODO: Initialize to an appropriate value
            object          newLayerExpected    = null;                  // TODO: Initialize to an appropriate value
            bool            abort               = false;                 // TODO: Initialize to an appropriate value
            bool            abortExpected       = false;                 // TODO: Initialize to an appropriate value
            string          lyrFilename         = string.Empty;          // TODO: Initialize to an appropriate value
            string          lyrFilenameExpected = string.Empty;          // TODO: Initialize to an appropriate value

            target.TestProjection(ref newLayer, ref abort, ref lyrFilename);
            Assert.AreEqual(newLayerExpected, newLayer);
            Assert.AreEqual(abortExpected, abort);
            Assert.AreEqual(lyrFilenameExpected, lyrFilename);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void frmProjMismatchConstructorTest()
        {
            frmProjMismatch target = new frmProjMismatch();

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