aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/WondexProtocolDecoderTest.java
blob: 249c8f2eff953da40384325c44386a35f3170a64 (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
25
package org.traccar.protocol;

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

public class WondexProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        WondexProtocolDecoder decoder = new WondexProtocolDecoder(null);
        decoder.setDataManager(new TestDataManager());
        
        assertNotNull(decoder.decode(null, null,
                "1044989601,20130323074605,0.000000,90.000000,0,000,0,0,2"));

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

        assertNotNull(decoder.decode(null, null,
                "1044989601,20130322172647,13.572583,52.401070,22,204,49,0,2"));

    }

}