Example #1
0
 public void TestGetPath()
 {
     DConRefRecord instance = new DConRefRecord(TestcaseRecordInputStream.Create(81, data1));
     byte[] expResult = Arrays.CopyOfRange(data1, 9, data1.Length);
     byte[] result = instance.GetPath();
     Assert.IsTrue(Arrays.Equals(expResult, result), "get path");
 }