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

import static org.traccar.helper.DecoderVerifier.verify;

import org.junit.Test;

public class FreedomProtocolDecoderTest extends ProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        FreedomProtocolDecoder decoder = new FreedomProtocolDecoder(new FreedomProtocol());

        verify(decoder.decode(null, null,
                "IMEI,353358011714362,2014/05/22, 20:49:32, N, Lat:4725.9624, E, Lon:01912.5483, Spd:5.05"));
        
    }

}