blob: a8a9223c818c327c3cc83522c443424e4011c72f (
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.jupiter.api.Test;
import org.traccar.ProtocolTest;
public class SmokeyProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
var decoder = inject(new SmokeyProtocolDecoder(null));
verifyAttributes(decoder, binary(
"534d0300865101019383025f0403000000000b86250200000c0000028f000102f8cc0900127f08"));
verifyAttributes(decoder, binary(
"534d0300865101019383025f0403000000000bcf260200000c0000028f000102f8cc090012360b"));
}
}
|