aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/FreedomProtocolDecoderTest.java
blob: c8f7a444ba438ecad1716c1ae3f75ded561d9585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.traccar.protocol;

import org.junit.Test;
import org.traccar.ProtocolTest;

public class FreedomProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new FreedomProtocolDecoder(null);

        verifyPosition(decoder, text(
                "IMEI,353358011714362,2014/05/22, 20:49:32, N, Lat:4725.9624, E, Lon:01912.5483, Spd:5.05"),
                position("2014-05-22 20:49:32.000", true, 47.43271, 19.20914));

        verifyPosition(decoder, text(
                "IMEI,353358011714362,2014/05/22, 20:49:32, N, Lat:4725.9624, E, Lon:01912.5483, Spd:5.05"));

    }

}