blob: 2fb734462f3cd2b63d79368b851150150f4cbea0 (
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 TopinProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
TopinProtocolDecoder decoder = new TopinProtocolDecoder(null);
verifyNull(decoder, binary(
"78780d0103593390754169634d0d0a"));
verifyPosition(decoder, binary(
"787812100a03170f32179c026b3f3e0c22ad651f34600d0a"));
verifyAttributes(decoder, binary(
"78780713514d0819640d0a"));
}
}
|