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

    @Test
    public void testDecode() throws Exception {

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

        verifyNull(decoder, binary(
                "4b0341a6b0c608000040000005000000000000007d5e14010068656c6c6f"));

        // data sample
        // {"f":"DE","t":"092304.01","d":"110813","la":"5117.6370","lo":"01655.3959","a":"00166.6","s":"","c":"","sv":"08","p":"01.6"}

    }

}