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

    @Test
    public void testDecode() throws Exception {

        SwiftechProtocolDecoder decoder = new SwiftechProtocolDecoder(null);

        verifyPosition(decoder, text(
                "@@864502036102531,,,070739,1100.7798,N,07657.7126,E,0.43,210813,A,1100,1,0,02700,05800,"));

    }

}