aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/NavigilProtocolDecoderTest.java
blob: 60d88999ef7ec7174a7054538768124bb7f5981c (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.Test;
import org.traccar.ProtocolTest;

public class NavigilProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new NavigilProtocolDecoder(null);

        verifyNull(decoder, binary(
                "01004300040020000000f60203080200e7cd0f510c0000003b00000000000000"));

        verifyPosition(decoder, binary(
                "0100b3000f0024000000f4a803080200ca0c1151ef8885f0b82e6d130400c00403000000"));

    }

}