Exemplo n.º 1
0
 @Test
 public void setNoData() {
   message = new CanMessage(bus, id, null);
   assertThat(message.getData(), notNullValue());
   assertArrayEquals(new byte[] {0, 0, 0, 0, 0, 0, 0, 0}, message.getData());
 }
Exemplo n.º 2
0
 @Test
 public void getDataReturnsData() {
   assertArrayEquals(data, message.getData());
 }