public void DynamicVisibilityClass_DVInfoConstructorTest()
        {
            Extents Exts        = null;  // TODO: Initialize to an appropriate value
            bool    UseExts     = false; // TODO: Initialize to an appropriate value
            int     LayerHandle = 0;     // TODO: Initialize to an appropriate value

            DynamicVisibilityClass.DVInfo target = new DynamicVisibilityClass.DVInfo(Exts, UseExts, LayerHandle);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
コード例 #2
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.");
        }
        public void DynamicExtentsTest()
        {
            Extents Exts        = null;                                                                           // TODO: Initialize to an appropriate value
            bool    UseExts     = false;                                                                          // TODO: Initialize to an appropriate value
            int     LayerHandle = 0;                                                                              // TODO: Initialize to an appropriate value

            DynamicVisibilityClass.DVInfo target = new DynamicVisibilityClass.DVInfo(Exts, UseExts, LayerHandle); // TODO: Initialize to an appropriate value
            Extents expected = null;                                                                              // TODO: Initialize to an appropriate value
            Extents actual;

            target.DynamicExtents = expected;
            actual = target.DynamicExtents;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }