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

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

public class BlackKiteProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = inject(new BlackKiteProtocolDecoder(null));

        verifyNull(decoder, binary(
                "01150003313131313131313131313131313131209836055605BA"));
        
        verifyPositions(decoder, binary(
                "0136000331313131313131313131313131313120523905563000010000000100000033000000003400004000004500004600005000005100009F76"));

    }

}