blob: 76590fe3fcb8d2007a0c026ce3837f3baca4482c (
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
26
|
package org.traccar.protocol;
import org.jboss.netty.buffer.ChannelBuffers;
import org.junit.Test;
import org.traccar.ProtocolDecoderTest;
import org.traccar.helper.ChannelBufferTools;
public class Gt02ProtocolDecoderTest extends ProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
Gt02ProtocolDecoder decoder = new Gt02ProtocolDecoder(new Gt02Protocol());
verifyPosition(decoder, binary(
"68682500000123456789012345000110010101010101026B3F3E026B3F3E000000000000000000010D0A"));
verifyNothing(decoder, binary(
"6868110603035889905101276600001a0402292d0d0a"));
verifyPosition(decoder, binary(
"68682500a403588990510127660001100e09060a1d1b00ade1c90b79ea3000011b000000000000050d0a"));
}
}
|