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

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

public class RoboTrackFrameDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new RoboTrackFrameDecoder();

        verifyFrame(
                binary("00524f424f545241434b00000000000000383638323034303032323533343136313233343536373839303132312e313261000000312e353761000000312e3030000000003e"),
                decoder.decode(null, null, binary("00524f424f545241434b00000000000000383638323034303032323533343136313233343536373839303132312e313261000000312e353761000000312e3030000000003e")));

    }

}