Exemple #1
0
        public void GetEnumeratorTest1()
        {
            DoubleMatrix matrix   = null;                                 // TODO: Initialize to an appropriate value
            IEnumerable  target   = new DoubleMatrix.RowAccessor(matrix); // TODO: Initialize to an appropriate value
            IEnumerator  expected = null;                                 // TODO: Initialize to an appropriate value
            IEnumerator  actual;

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