Пример #1
0
        public void TestLayerZoomExtentsTest()
        {
            DynamicVisibilityClass target = new DynamicVisibilityClass(); // TODO: Initialize to an appropriate value

            target.TestLayerZoomExtents();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #2
0
        public void RemoveTest()
        {
            DynamicVisibilityClass target = new DynamicVisibilityClass(); // TODO: Initialize to an appropriate value
            int LayerHandle = 0;                                          // TODO: Initialize to an appropriate value

            target.Remove(LayerHandle);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #3
0
        public void AddTest()
        {
            DynamicVisibilityClass target = new DynamicVisibilityClass(); // TODO: Initialize to an appropriate value
            int     LayerHandle           = 0;                            // TODO: Initialize to an appropriate value
            Extents Extents        = null;                                // TODO: Initialize to an appropriate value
            bool    FeatureEnabled = false;                               // TODO: Initialize to an appropriate value

            target.Add(LayerHandle, Extents, FeatureEnabled);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #4
0
        public void ContainsTest()
        {
            DynamicVisibilityClass target = new DynamicVisibilityClass(); // TODO: Initialize to an appropriate value
            int  LayerHandle = 0;                                         // TODO: Initialize to an appropriate value
            bool expected    = false;                                     // TODO: Initialize to an appropriate value
            bool actual;

            actual = target.Contains(LayerHandle);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #5
0
        public void ItemTest()
        {
            DynamicVisibilityClass target = new DynamicVisibilityClass(); // TODO: Initialize to an appropriate value
            int LayerHandle = 0;                                          // TODO: Initialize to an appropriate value

            DynamicVisibilityClass.DVInfo expected = null;                // TODO: Initialize to an appropriate value
            DynamicVisibilityClass.DVInfo actual;
            target[LayerHandle] = expected;
            actual = target[LayerHandle];
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #6
0
        public void DynamicVisibilityClassConstructorTest()
        {
            DynamicVisibilityClass target = new DynamicVisibilityClass();

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