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

    @Test
    public void testDecode() throws Exception {

        RaveonProtocolDecoder decoder = new RaveonProtocolDecoder(new RaveonProtocol());

        verifyPosition(decoder, text(
                "$PRAVE,0001,0001,3308.9051,-11713.1164,195348,1,10,168,31,13.3,3,-83,0,0,,1003.4*66"));

    }

}