aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/Vt300ProtocolDecoderTest.java
blob: 5a1bf685f4155f4128828397e63b0742e8524809 (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.junit.Assert.assertNotNull;
import org.junit.Test;

public class Vt300ProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        Vt300ProtocolDecoder decoder = new Vt300ProtocolDecoder(null);
        decoder.setDataManager(new TestDataManager());

        assertNotNull(decoder.decode(null, null,
                "210000001,20070313170040,121.123456,12.654321,0,233,0,9,2,0.0,0,0.00,0.00,0"));

    }

}