Exemplo n.º 1
0
        public void SpDataReaderConstructorTest()
        {
            XmlReader    xmlReader = null; // TODO: Initialize to an appropriate value
            SpDataReader target    = new SpDataReader(xmlReader);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Exemplo n.º 2
0
        public void DisposeTest()
        {
            XmlReader    xmlReader = null;                        // TODO: Initialize to an appropriate value
            SpDataReader target    = new SpDataReader(xmlReader); // TODO: Initialize to an appropriate value

            target.Dispose();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Exemplo n.º 3
0
        public void RecordsAffectedTest()
        {
            XmlReader    xmlReader = null;                        // TODO: Initialize to an appropriate value
            SpDataReader target    = new SpDataReader(xmlReader); // TODO: Initialize to an appropriate value
            int          actual;

            actual = target.RecordsAffected;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 4
0
        public void ItemTest()
        {
            XmlReader    xmlReader = null;                        // TODO: Initialize to an appropriate value
            SpDataReader target    = new SpDataReader(xmlReader); // TODO: Initialize to an appropriate value
            int          i         = 0;                           // TODO: Initialize to an appropriate value
            object       actual;

            actual = target[i];
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 5
0
        public void ReadTest()
        {
            XmlReader    xmlReader = null;                        // TODO: Initialize to an appropriate value
            SpDataReader target    = new SpDataReader(xmlReader); // TODO: Initialize to an appropriate value
            bool         expected  = false;                       // TODO: Initialize to an appropriate value
            bool         actual;

            actual = target.Read();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 6
0
        public void GetSchemaTableTest()
        {
            XmlReader    xmlReader = null;                        // TODO: Initialize to an appropriate value
            SpDataReader target    = new SpDataReader(xmlReader); // TODO: Initialize to an appropriate value
            DataTable    expected  = null;                        // TODO: Initialize to an appropriate value
            DataTable    actual;

            actual = target.GetSchemaTable();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 7
0
        public void GetStringTest()
        {
            XmlReader    xmlReader = null;                        // TODO: Initialize to an appropriate value
            SpDataReader target    = new SpDataReader(xmlReader); // TODO: Initialize to an appropriate value
            int          i         = 0;                           // TODO: Initialize to an appropriate value
            string       expected  = string.Empty;                // TODO: Initialize to an appropriate value
            string       actual;

            actual = target.GetString(i);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 8
0
        public void GetValuesTest()
        {
            XmlReader    xmlReader = null;                        // TODO: Initialize to an appropriate value
            SpDataReader target    = new SpDataReader(xmlReader); // TODO: Initialize to an appropriate value

            object[] values   = null;                             // TODO: Initialize to an appropriate value
            int      expected = 0;                                // TODO: Initialize to an appropriate value
            int      actual;

            actual = target.GetValues(values);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 9
0
        public void GetCharsTest()
        {
            XmlReader    xmlReader   = null;                        // TODO: Initialize to an appropriate value
            SpDataReader target      = new SpDataReader(xmlReader); // TODO: Initialize to an appropriate value
            int          i           = 0;                           // TODO: Initialize to an appropriate value
            long         fieldoffset = 0;                           // TODO: Initialize to an appropriate value

            char[] buffer       = null;                             // TODO: Initialize to an appropriate value
            int    bufferoffset = 0;                                // TODO: Initialize to an appropriate value
            int    length       = 0;                                // TODO: Initialize to an appropriate value
            long   expected     = 0;                                // TODO: Initialize to an appropriate value
            long   actual;

            actual = target.GetChars(i, fieldoffset, buffer, bufferoffset, length);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }