blob: a17f9d1e33fe6dce9b0a323cbc6336b35c41fae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class NavisetProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
NavisetProtocolDecoder decoder = new NavisetProtocolDecoder(null);
verifyNull(decoder, binary(
"1310e4073836383230343030353935383436362a060716"));
}
}
|