blob: 8d2e70bd4fa404c408548e96babec88c152021b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class TeltonikaFrameDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
TeltonikaFrameDecoder decoder = new TeltonikaFrameDecoder();
verifyFrame(
binary("000F313233343536373839303132333435"),
decoder.decode(null, null, binary("FF000F313233343536373839303132333435")));
verifyFrame(
binary("000F313233343536373839303132333435"),
decoder.decode(null, null, binary("000F313233343536373839303132333435")));
}
}
|