Example #1
0
        public void GetValTest1()
        {
            int offset = 0;

            byte[] data = new byte[] { 1, 2, 3, 4 };
            BReader.GetValue(typeof(UserSpecUintType), 1, ref offset, ref data);
        }
Example #2
0
 public void GetValTest1()
 {
     Assert.Throws <NotSupportedException>(() =>
     {
         int offset  = 0;
         byte[] data = new byte[] { 1, 2, 3, 4 };
         BReader.GetValue(typeof(UserSpecUintType), 1, ref offset, ref data);
     });
 }