blob: 5daafcc401984a16c524dcb637b55694624ceae2 (
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.Test;
import org.traccar.ProtocolTest;
public class AutoTrackProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
AutoTrackProtocolDecoder decoder = new AutoTrackProtocolDecoder(null);
verifyNull(decoder, binary(
"f1f1f1f1330c00201007090006de7200000000daa3"));
}
}
|