public void FieldNameTest()
        {
            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_FieldName(aFieldNumber, expected);
            actual = target.get_FieldName(aFieldNumber);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }