Beispiel #1
0
        public void ToRawTest()
        {
            string       tag      = "001";
            string       data     = "  2007032296";
            ControlField target   = new ControlField(tag, data);
            string       expected = "  2007032296" + FileMARC.END_OF_FIELD.ToString();
            string       actual   = target.ToRaw();

            Assert.AreEqual(expected, actual);
        }