blob: d1d4c4e9ecdcb1b7c5bb6ee7fa8dab8c29925de0 (
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
28
29
30
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class EelinkProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
EelinkProtocolDecoder decoder = new EelinkProtocolDecoder(new EelinkProtocol());
verifyNothing(decoder, binary(
"676701000c002603541880486128290120"));
verifyNothing(decoder, binary(
"676701000b001b035418804661834901"));
verifyNothing(decoder, binary(
"6767030004001A0001"));
verifyNothing(decoder, binary(
"6767070088001050E2281400FFFFFFFF02334455660333445566043344556605AA00000007334455660A334455660B334455660C4E2000000DAA0000000E334455660F3344556610AAAA000011334455661C334455661F334455662133445566423344556646334455664D334455665C334455665E33445566880000000089000000008A000000008B00000000"));
verifyPosition(decoder, binary(
"676702001b03c5538086df0190c1790b3482df0f0157020800013beb00342401"));
}
}
|