コード例 #1
0
 public void TestCompactDecodeTwo()
 {
     byte[] test     = new byte[] { 0x00, 0x01, 0x23, 0x45 };
     byte[] expected = new byte[] { 0, 1, 2, 3, 4, 5 };
     byte[] result   = CompactEncoder.CompactDecode(test);
     Assert.AreEqual(Encoding.ASCII.GetString(result), Encoding.ASCII.GetString(expected));
 }
コード例 #2
0
 public void TestCompactDecodeFour()
 {
     byte[] test     = new byte[] { 0x3f, 0x1c, 0xb8 };
     byte[] expected = new byte[] { 15, 1, 12, 11, 8, T };
     byte[] result   = CompactEncoder.CompactDecode(test);
     Assert.AreEqual(Encoding.ASCII.GetString(result), Encoding.ASCII.GetString(expected));
 }
コード例 #3
0
 public void TestCompactHexDecode()
 {
     byte[] test     = Encoding.ASCII.GetBytes("verb");
     byte[] expected = new byte[] { 7, 6, 6, 5, 7, 2, 6, 2, 16 };
     byte[] result   = CompactEncoder.CompactHexDecode(test);
     Assert.AreEqual(Encoding.ASCII.GetString(result), Encoding.ASCII.GetString(expected));
 }