public void LoadMainCategComboBoxTest()
        {
            clsProjections target                = new clsProjections(); // TODO: Initialize to an appropriate value
            ComboBox       cboCategories         = null;                 // TODO: Initialize to an appropriate value
            ComboBox       cboCategoriesExpected = null;                 // TODO: Initialize to an appropriate value

            target.LoadMainCategComboBox(ref cboCategories);
            Assert.AreEqual(cboCategoriesExpected, cboCategories);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void LoadNamesComboBoxTest()
        {
            clsProjections target = new clsProjections();      // TODO: Initialize to an appropriate value
            string         LoadingforMainCateg = string.Empty; // TODO: Initialize to an appropriate value
            string         LoadingForCategory  = string.Empty; // TODO: Initialize to an appropriate value
            ComboBox       cboNames            = null;         // TODO: Initialize to an appropriate value
            ComboBox       cboNamesExpected    = null;         // TODO: Initialize to an appropriate value

            target.LoadNamesComboBox(LoadingforMainCateg, LoadingForCategory, ref cboNames);
            Assert.AreEqual(cboNamesExpected, cboNames);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void FindProjectionByPROJ4Test()
        {
            clsProjections target   = new clsProjections(); // TODO: Initialize to an appropriate value
            string         proj4    = string.Empty;         // TODO: Initialize to an appropriate value
            bool           Tolerant = false;                // TODO: Initialize to an appropriate value

            clsProjections.clsProjection expected = null;   // TODO: Initialize to an appropriate value
            clsProjections.clsProjection actual;
            actual = target.FindProjectionByPROJ4(proj4, Tolerant);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void FindProjectionByCatAndNameTest()
        {
            clsProjections target    = new clsProjections(); // TODO: Initialize to an appropriate value
            string         MainCateg = string.Empty;         // TODO: Initialize to an appropriate value
            string         Category  = string.Empty;         // TODO: Initialize to an appropriate value
            string         Name      = string.Empty;         // TODO: Initialize to an appropriate value
            string         expected  = string.Empty;         // TODO: Initialize to an appropriate value
            string         actual;

            actual = target.FindProjectionByCatAndName(MainCateg, Category, Name);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void GetOrSetLastCustomProj4Test()
        {
            clsProjections target        = new clsProjections(); // TODO: Initialize to an appropriate value
            string         inout         = string.Empty;         // TODO: Initialize to an appropriate value
            string         inoutExpected = string.Empty;         // TODO: Initialize to an appropriate value
            bool           setting       = false;                // TODO: Initialize to an appropriate value
            string         expected      = string.Empty;         // TODO: Initialize to an appropriate value
            string         actual;

            actual = target.GetOrSetLastCustomProj4(ref inout, setting);
            Assert.AreEqual(inoutExpected, inout);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void clsProjectionsConstructorTest()
        {
            clsProjections target = new clsProjections();

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