Ejemplo n.º 1
0
        public void TestPackBytesWithNul()
        {
            var bytes = new Mid0001(true).PackBytesWithNul();

            Assert.IsNotNull(bytes);
            Assert.AreEqual(0x00, bytes[bytes.Length - 1]);
        }
Ejemplo n.º 2
0
        public void TestPackWithNul()
        {
            var package = new Mid0001(true).PackWithNul();

            Assert.IsNotNull(package);
            Assert.AreEqual('\0', package[package.Length - 1]);
        }