APDUTest.APDUTest.TestAPDUTagLengtOnly C# (CSharp) Method

TestAPDUTagLengtOnly() private method

private TestAPDUTagLengtOnly ( ) : void
return void
        public void TestAPDUTagLengtOnly()
        {
            List<TLV> result = APDU.Parse("8000");
            Assert.AreEqual("80", result[0].Tag);
            Assert.AreEqual(0, result[0].Length);
            Assert.IsNull(result[0].Value);
        }