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

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

public class PstProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        PstProtocolDecoder decoder = new PstProtocolDecoder(null);

        verifyNull(decoder, binary(
                "2faf9b4c0600000012054f36ec194000bfa9"));

        verifyNull(decoder, binary(
                "2faf9b5605e40000e0022faf9b560196cb2f003f0c72ab56129ae0847ac98801cd1ed8"));

        verifyNull(decoder, binary(
                "2fafac5a050f0000e0022fafac5a01891e882bbfdd06dd577c9865620a0efe524c419f940b6710f5ba0c86e5868ffc97c77eaaf166a31dba63f9894e98a91b9486c94e79ce537359737a5e9385431a590eb20b5115a2b7939e4e66ae"));

    }

}