blob: 3b2f2c9b78d003f35668ea820a8e682b68cf4dcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package org.traccar.protocol;
import org.junit.jupiter.api.Test;
import org.traccar.ProtocolTest;
public class AutoTrackProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
var decoder = inject(new AutoTrackProtocolDecoder(null));
verifyNull(decoder, binary(
"f1f1f1f1330c00201007090006de7200000000daa3"));
}
}
|