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

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

public class Pt502ProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {
        
        Pt502ProtocolDecoder decoder = new Pt502ProtocolDecoder(new TestDataManager());

        assertNotNull(decoder.decode(null, null,
                "$POS,6094,205523.000,A,1013.6223,N,06728.4248,W,0.0,99.3,011112,,,A/00000,00000/0/23895000//"));

    }

}