internal virtual clsATCTable CreateclsATCTable()
        {
            // TODO: Instantiate an appropriate concrete class.
            clsATCTable target = null;

            return(target);
        }
        public void CurrentRecordAsDelimitedStringTest()
        {
            clsATCTable target     = CreateclsATCTable(); // TODO: Initialize to an appropriate value
            string      aDelimiter = string.Empty;        // TODO: Initialize to an appropriate value
            string      aQuote     = string.Empty;        // TODO: Initialize to an appropriate value
            string      expected   = string.Empty;        // TODO: Initialize to an appropriate value
            string      actual;

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