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

    @Test
    public void testDecode() throws Exception {

        VtfmsProtocolDecoder decoder = new VtfmsProtocolDecoder(new VtfmsProtocol());

        verifyPosition(decoder, text(
                "(863071010087648,0HK44,00,000,14,2,9,,A,114946,180313,11.0244,076.9768,282,000,00000,00000,K,0000128,1,12.8,,200,2.501,,4.001,0,0,0,0,0,0,0,,)105"));

    }

}