Exemplo n.º 1
0
        public void FinalizeTest()
        {
            Layers_Accessor target = new Layers_Accessor(); // TODO: Initialize to an appropriate value

            target.Finalize();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Exemplo n.º 2
0
        public void TryCloseObjectTest()
        {
            Layers_Accessor target    = new Layers_Accessor(); // TODO: Initialize to an appropriate value
            object          newObject = null;                  // TODO: Initialize to an appropriate value

            target.TryCloseObject(newObject);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Exemplo n.º 3
0
        public void MakeRandomColorTest()
        {
            Layers_Accessor target   = new Layers_Accessor(); // TODO: Initialize to an appropriate value
            int             expected = 0;                     // TODO: Initialize to an appropriate value
            int             actual;

            actual = target.MakeRandomColor();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 4
0
        public void LoadingTIForIMGasGridTest()
        {
            Layers_Accessor target   = new Layers_Accessor(); // TODO: Initialize to an appropriate value
            string          fn       = string.Empty;          // TODO: Initialize to an appropriate value
            bool            expected = false;                 // TODO: Initialize to an appropriate value
            bool            actual;

            actual = target.LoadingTIForIMGasGrid(fn);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 5
0
        public void GenerateGridColorSchemeTest()
        {
            Layers_Accessor target                 = new Layers_Accessor(); // TODO: Initialize to an appropriate value
            Grid            newGrid                = null;                  // TODO: Initialize to an appropriate value
            Grid            newGridExpected        = null;                  // TODO: Initialize to an appropriate value
            GridColorScheme GrdColorScheme         = null;                  // TODO: Initialize to an appropriate value
            GridColorScheme GrdColorSchemeExpected = null;                  // TODO: Initialize to an appropriate value

            target.GenerateGridColorScheme(ref newGrid, ref GrdColorScheme);
            Assert.AreEqual(newGridExpected, newGrid);
            Assert.AreEqual(GrdColorSchemeExpected, GrdColorScheme);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Exemplo n.º 6
0
        public void TestShapefileTest()
        {
            Layers_Accessor target        = new Layers_Accessor(); // TODO: Initialize to an appropriate value
            Shapefile       sf            = null;                  // TODO: Initialize to an appropriate value
            Shapefile       sfExpected    = 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

            target.TestShapefile(ref sf, ref abort);
            Assert.AreEqual(sfExpected, sf);
            Assert.AreEqual(abortExpected, abort);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }