Beispiel #1
0
        public void FormatFieldTest()
        {
            string       tag      = "001";
            string       data     = "  2007032296";
            ControlField target   = new ControlField(tag, data);
            string       expected = "  2007032296";
            string       actual   = target.FormatField();

            Assert.AreEqual(expected, actual);
        }