blob: 08bc8f699d94d61d3c25c6fc591cbac2e8109eb7 (
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
27
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class TopinProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
TopinProtocolDecoder decoder = new TopinProtocolDecoder(null);
verifyNull(decoder, binary(
"78780d0103593390754169634d0d0a"));
verifyNotNull(decoder, binary(
"7878001719111120141807019456465111aa3c465111ab464651c1a550465106b150465342f750465342f65a465111a95a000d0a"));
verifyPosition(decoder, binary(
"787812100a03170f32179c026b3f3e0c22ad651f34600d0a"));
verifyAttributes(decoder, binary(
"78780713514d0819640d0a"));
}
}
|