aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/CruzTechoProtocolDecoderTest.java
blob: 3dfe9ef62165c2f0f1bdf5c9f5dec45bca71403a (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 CruzTechoProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new CruzTechoProtocolDecoder(null);

        verifyPosition(decoder, text(
                "$$A120,8612345678910,211005105836,A,FLEX,KCB 947C,000.0,0,-1.38047,S,36.93951,E,1648.4,243.140,21,28,12.1,3.7,0,1,0,0,0,*F6"));

    }

}