blob: 547014752d528308a5315f522f9f97a8bf433fbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package org.traccar.protocol;
import org.junit.jupiter.api.Test;
import org.traccar.ProtocolTest;
public class TlvProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
var decoder = inject(new TlvProtocolDecoder(null));
verifyNull(decoder, binary(
"30430f383630323437303330303934333931ff10393233323132323030303834353433340f533636385f415f56312e30315f454eff1130303a30433a45373a30303a30303a30300132"));
verifyNull(decoder, binary(
"30410f383630323437303330303934333931"));
verifyNull(decoder, binary(
"30420f3836303234373033303039343339310131"));
}
}
|