public void ClearTest()
        {
            IATCTable target = CreateclsATCTable(); // TODO: Initialize to an appropriate value

            target.Clear();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #2
0
        internal virtual IATCTable CreateIATCTable()
        {
            // TODO: Instantiate an appropriate concrete class.
            IATCTable target = null;

            return(target);
        }
        public void CousinTest()
        {
            IATCTable target   = CreateclsATCTable(); // TODO: Initialize to an appropriate value
            IATCTable expected = null;                // TODO: Initialize to an appropriate value
            IATCTable actual;

            actual = target.Cousin();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void CreationCodeTest()
        {
            IATCTable target   = CreateclsATCTable(); // TODO: Initialize to an appropriate value
            string    expected = string.Empty;        // TODO: Initialize to an appropriate value
            string    actual;

            actual = target.CreationCode();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void OpenAnyTableTest()
        {
            string    aFilename = string.Empty; // TODO: Initialize to an appropriate value
            IATCTable expected  = null;         // TODO: Initialize to an appropriate value
            IATCTable actual;

            actual = TableOpener.OpenAnyTable(aFilename);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #6
0
        public void OpenProjectionDatabaseTest()
        {
            clsProjectionDB_Accessor target = new clsProjectionDB_Accessor(); // TODO: Initialize to an appropriate value
            IATCTable expected = null;                                        // TODO: Initialize to an appropriate value
            IATCTable actual;

            actual = target.OpenProjectionDatabase();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void NumFieldsTest()
        {
            IATCTable target   = CreateclsATCTable(); // TODO: Initialize to an appropriate value
            int       expected = 0;                   // TODO: Initialize to an appropriate value
            int       actual;

            target.NumFields = expected;
            actual           = target.NumFields;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void FieldNumberTest()
        {
            IATCTable target     = CreateclsATCTable(); // TODO: Initialize to an appropriate value
            string    aFieldName = string.Empty;        // TODO: Initialize to an appropriate value
            int       expected   = 0;                   // TODO: Initialize to an appropriate value
            int       actual;

            actual = target.FieldNumber(aFieldName);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void OpenFileTest()
        {
            IATCTable target    = CreateclsATCTable(); // TODO: Initialize to an appropriate value
            string    aFilename = string.Empty;        // TODO: Initialize to an appropriate value
            bool      expected  = false;               // TODO: Initialize to an appropriate value
            bool      actual;

            actual = target.OpenFile(aFilename);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void atBOFTest()
        {
            IATCTable target   = CreateclsATCTable(); // TODO: Initialize to an appropriate value
            bool      expected = false;               // TODO: Initialize to an appropriate value
            bool      actual;

            target.atBOF = expected;
            actual       = target.atBOF;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #11
0
        public void SummaryFieldsTest()
        {
            IATCTable target   = CreateIATCTable(); // TODO: Initialize to an appropriate value
            string    aFormat  = string.Empty;      // TODO: Initialize to an appropriate value
            string    expected = string.Empty;      // TODO: Initialize to an appropriate value
            string    actual;

            actual = target.SummaryFields(aFormat);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ValueTest()
        {
            IATCTable target       = CreateclsATCTable(); // TODO: Initialize to an appropriate value
            int       aFieldNumber = 0;                   // TODO: Initialize to an appropriate value
            string    expected     = string.Empty;        // TODO: Initialize to an appropriate value
            string    actual;

            target.set_Value(aFieldNumber, expected);
            actual = target.get_Value(aFieldNumber);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #13
0
        public void FindNextTest()
        {
            IATCTable target       = CreateIATCTable(); // TODO: Initialize to an appropriate value
            int       aFieldNumber = 0;                 // TODO: Initialize to an appropriate value
            string    aFindValue   = string.Empty;      // TODO: Initialize to an appropriate value
            bool      expected     = false;             // TODO: Initialize to an appropriate value
            bool      actual;

            actual = target.FindNext(aFieldNumber, aFindValue);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #14
0
        public void FieldLengthTest()
        {
            IATCTable target       = CreateIATCTable(); // TODO: Initialize to an appropriate value
            int       aFieldNumber = 0;                 // TODO: Initialize to an appropriate value
            int       expected     = 0;                 // TODO: Initialize to an appropriate value
            int       actual;

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