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

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import org.junit.Test;

public class SkypatrolProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {
        
        SkypatrolProtocolDecoder decoder = new SkypatrolProtocolDecoder(new TestDataManager());
        
        /*assertNull(decoder.decode(null, null, "$PGID,359853000144328*0F"));

        assertNotNull(decoder.decode(null, null,
                "$GPRMC,094907.000,A,6000.5332,N,03020.5192,E,1.17,60.26,091111,,*33"));

        assertNotNull(decoder.decode(null, null,
                "$GPRMC,115528.000,A,6000.5432,N,03020.4948,E,,,091111,,*06"));*/

    }

}