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

    @Test
    public void testDecode() throws Exception {

        var decoder = new SanulProtocolDecoder(null);

        verifyNull(decoder, binary(
                "aa007020000100000000000033353333353830313831353431313700000000000000000000"));

    }

}