blob: fb1984d87f4b774cb214a389c8c39ac2c7f4845a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class Avl301ProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
var decoder = new Avl301ProtocolDecoder(null);
verifyNull(decoder, binary(
"244c0f086058500087335500010d0a"));
verifyNull(decoder, binary(
"24480d1001c3065c0d00010d0a"));
verifyPosition(decoder, binary(
"24242c0f041710001d0e060146944904ff4ac40000148f0651044b001a081001be06590daa00000108a30d0a"));
}
}
|