blob: 882a63fe6da0728c473d47e547a261bd05f119ea (
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 SanulProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
SanulProtocolDecoder decoder = new SanulProtocolDecoder(null);
verifyNull(decoder, binary(
"aa007020000100000000000033353333353830313831353431313700000000000000000000"));
}
}
|