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

    @Test
    public void testDecode() throws Exception {

        PricolProtocolDecoder decoder = new PricolProtocolDecoder(new PricolProtocol());

        verifyPosition(decoder, binary(
                "3c4944303030303150FFFFFFFF1C050C121D38045D09FA4e001DE815F4452FFFFFFFFFFF03FF03FF03FF03FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF113e"));

    }

}