コード例 #1
0
        public void SelectInfo_SelectedShapeEnumeratorConstructorTest()
        {
            SelectInfo inp = null; // TODO: Initialize to an appropriate value

            SelectInfo.SelectedShapeEnumerator target = new SelectInfo.SelectedShapeEnumerator(inp);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
コード例 #2
0
        public void ResetTest()
        {
            SelectInfo  inp    = null;                                        // TODO: Initialize to an appropriate value
            IEnumerator target = new SelectInfo.SelectedShapeEnumerator(inp); // TODO: Initialize to an appropriate value

            target.Reset();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #3
0
        public void CurrentTest()
        {
            SelectInfo  inp    = null;                                        // TODO: Initialize to an appropriate value
            IEnumerator target = new SelectInfo.SelectedShapeEnumerator(inp); // TODO: Initialize to an appropriate value
            object      actual;

            actual = target.Current;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #4
0
        public void MoveNextTest()
        {
            SelectInfo  inp      = null;                                        // TODO: Initialize to an appropriate value
            IEnumerator target   = new SelectInfo.SelectedShapeEnumerator(inp); // TODO: Initialize to an appropriate value
            bool        expected = false;                                       // TODO: Initialize to an appropriate value
            bool        actual;

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