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

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

public class ProgressProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new ProgressProtocolDecoder(null);

        verifyNull(decoder, binary(
                "020037000100000003003131310f003335343836383035313339303036320f00323530303136333832383531353535010000000100000000000000e6bb97b6"));

    }

}