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

import org.junit.Ignore;
import org.junit.Test;
import org.traccar.ProtocolTest;

public class DingtekProtocolDecoderTest extends ProtocolTest {

    @Ignore
    @Test
    public void testDecode() throws Exception {

        DingtekProtocolDecoder decoder = new DingtekProtocolDecoder(null);

        verifyPosition(decoder, binary(
                "800001011e0692001a00000000016e008027c40000186962703655111781"));

    }

}