compareListTLV() public static method

public static compareListTLV ( List expected, List result ) : void
expected List
result List
return void
示例#1
0
        public void TestAPDUIncompleteValue()
        {
            expected = Helper.CreateDefaultTLV();
            List <TLV> result = APDU.Parse(Helper.DefaultTLV + "890311");

            Helper.compareListTLV(expected, result);
        }
示例#2
0
        public void TestAPDUNominal()
        {
            expected = Helper.CreateDefaultTLV();
            List <TLV> result = APDU.Parse(Helper.DefaultTLV);

            Helper.compareListTLV(expected, result);
        }