blob: 547189a1e08520079249f6129312f05880da01df (
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.jboss.netty.buffer.ChannelBuffers;
import org.junit.Test;
import org.traccar.ProtocolDecoderTest;
import org.traccar.helper.ChannelBufferTools;
public class AutoFon45ProtocolDecoderTest extends ProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
AutoFon45ProtocolDecoder decoder = new AutoFon45ProtocolDecoder(new AutoFon45Protocol());
verifyNothing(decoder, binary(
"41032125656985547543619173484002123481"));
verifyPosition(decoder, binary(
"023E00001E004D411EFA01772F185285009C48041F1E366C2961380F26B10B00911C"),
position("2010-01-27 04:00:08.000", true, 54.73838, 56.10343));
verifyPosition(decoder, binary(
"023E00001E004D411EFA01772F185285009C48041F1E366C2961380F26B10B00911C"));
}
}
|