blob: ac37386446054dea90e06f88ad27a945efd4cc4b (
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
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class Gps056ProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
var decoder = inject(new Gps056ProtocolDecoder(null));
verifyNull(decoder, buffer(
"$$25LOGN_118624620337829462.1#"));
verifyPosition(decoder, binary(
"242435314750534C5F30323836333037313031353034353834391D0A0E091A0A0B1112C34E1E23230A45FF00000000000000000000000023"));
verifyAttributes(decoder, binary(
"2424323853594E435F313138363330373130313530343538343900000000000023"));
}
}
|