blob: c2d74b433846b9c27abfa1a2b91c7982e6bc7ac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class SmokeyProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
SmokeyProtocolDecoder decoder = new SmokeyProtocolDecoder(null);
verifyAttributes(decoder, binary(
"534d0300865101019383025f0403000000000b86250200000c0000028f000102f8cc0900127f08"));
verifyAttributes(decoder, binary(
"534d0300865101019383025f0403000000000bcf260200000c0000028f000102f8cc090012360b"));
}
}
|