blob: be0ccc4609b3bdad47c1196a5632fb2668360785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class SanulProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
SanulProtocolDecoder decoder = new SanulProtocolDecoder(null);
verifyNull(decoder, binary(
"aa007020000100000000000033353333353830313831353431313700000000000000000000"));
// aa00000f00010500000000000000000000000000
}
}
|