public void Shapes_ShapeEnumeratorConstructorTest()
        {
            Shapes inp = null; // TODO: Initialize to an appropriate value

            Shapes.ShapeEnumerator target = new Shapes.ShapeEnumerator(inp);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void ResetTest()
        {
            Shapes      inp    = null;                            // TODO: Initialize to an appropriate value
            IEnumerator target = new Shapes.ShapeEnumerator(inp); // TODO: Initialize to an appropriate value

            target.Reset();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void CurrentTest()
        {
            Shapes      inp    = null;                            // TODO: Initialize to an appropriate value
            IEnumerator target = new Shapes.ShapeEnumerator(inp); // TODO: Initialize to an appropriate value
            object      actual;

            actual = target.Current;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void MoveNextTest()
        {
            Shapes      inp      = null;                            // TODO: Initialize to an appropriate value
            IEnumerator target   = new Shapes.ShapeEnumerator(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.");
        }