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.");
        }