1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class DwayProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
DwayProtocolDecoder decoder = new DwayProtocolDecoder(new DwayProtocol());
verifyPosition(decoder, text(
"AA55,1,123456,1,140101,101132,22.5500,113.6770,75,70.5,320,1100,0011,1110,3950,33000,24000,12345678"));
verifyNull(decoder, text(
">H12345678"));
}
}
|