aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/XirgoProtocolDecoderTest.java
blob: 81133104c6619435c377dc1f22eaa3b2afcf52df (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 org.traccar.helper.TestDataManager;
import static org.traccar.helper.DecoderVerifier.verify;
import org.junit.Test;

public class XirgoProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        XirgoProtocolDecoder decoder = new XirgoProtocolDecoder(new TestDataManager(), null, null);

        verify(decoder.decode(null, null, null,
                "$$354898045650537,6031,2015/02/26,15:47:26,33.42552,-112.30308,287.8,0,0,0,0,0.0,7,1.2,2,0.0,12.2,22,1,0,82.3"));

    }

}