aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/UuxProtocolDecoderTest.java
blob: 203ff2492e36acd9216d2a1708bc0514d9ab03b8 (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 UuxProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new UuxProtocolDecoder(null);

        verifyAttributes(decoder, binary(
                "81918c2d9e31395533443630363631041c0c16043030313030300007000000000000000000000000000000000000000000"));

    }

}