@Test
 public void setValue_WithDataSize0Params() throws Exception {
   mAction = new I2cWriteAction(mService, (byte) 0x53, new byte[0], mStore);
   mAction.setValue();
   verify(mCharacteristic, times(1)).setValue(mValueCaptor.capture());
   assertThat(mValueCaptor.getValue()[0]).isEqualTo((byte) (0x00 + 1));
   assertThat(mValueCaptor.getValue()[1]).isEqualTo((byte) 0xa6);
 }
 @Test
 public void setValue_WithValidParams() throws Exception {
   mAction = new I2cWriteAction(mService, (byte) 0x53, mData, mStore);
   mAction.setValue();
   verify(mCharacteristic, times(1)).setValue(mValueCaptor.capture());
   assertThat(mValueCaptor.getValue()[0]).isEqualTo((byte) (0x0a + 1));
   assertThat(mValueCaptor.getValue()[1]).isEqualTo((byte) 0xa6);
   for (int i = 0; i < mData.length; i++) {
     assertThat(mValueCaptor.getValue()[i + 2]).isEqualTo(mData[i]);
   }
 }
 @Test
 public void hasValidParams_WithOverLength() throws Exception {
   mAction =
       new I2cWriteAction(
           mService,
           (byte) 0xa6,
           new byte[] {
             0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d,
             0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14
           },
           mStore);
   assertThat(mAction.validate()).isEqualTo(KonashiErrorType.DATA_SIZE_TOO_LONG);
 }
 @Test
 public void setValue_WithDataSize16Params() throws Exception {
   byte[] data =
       new byte[] {
         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
         0x0f
       };
   mAction = new I2cWriteAction(mService, (byte) 0x53, data, mStore);
   mAction.setValue();
   verify(mCharacteristic, times(1)).setValue(mValueCaptor.capture());
   assertThat(mValueCaptor.getValue()[0]).isEqualTo((byte) (0x10 + 1));
   assertThat(mValueCaptor.getValue()[1]).isEqualTo((byte) 0xa6);
   for (int i = 0; i < data.length; i++) {
     assertThat(mValueCaptor.getValue()[i + 2]).isEqualTo(data[i]);
   }
 }
 @Test
 public void hasValidParams_WithValidParams() throws Exception {
   mAction = new I2cWriteAction(mService, (byte) 0xa6, mData, mStore);
   assertThat(mAction.validate()).isEqualTo(KonashiErrorType.NO_ERROR);
 }