Example #1
0
 @Test
 public void testInternalByteArrayFromDataInputByteArray() throws IOException {
   DataInputByteArray dataInputByteArray = new DataInputByteArray(new byte[0]);
   assertNotNull(
       "Internal byte array should not be null since it was passed in the constructor",
       dataInputByteArray.internalByteArray());
 }