aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java
blob: 441d7b811f2ac3de8c163e05813f9c6c986ca36f (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.Test;
import org.traccar.ProtocolTest;

public class Xrb28ProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        Xrb28ProtocolDecoder decoder = new Xrb28ProtocolDecoder(null);

        verifyNull(decoder, text(
                "\u00ff\u00ff*HBCR,OM,123456789123456,Q0,412,80#"));

        verifyNull(decoder, text(
                "\u00ff\u00ff*HBCR,OM,123456789123456,R0,0,55,1234,1497689816#"));

        verifyPosition(decoder, text(
                "\u00ff\u00ff*HBCR,OM,123456789123456,D0,0,124458.00,A,2237.7514,N,11408.6214,E,6,0.21,151216,10,M,A#"));

    }

}