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

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.traccar.ProtocolTest;

public class PositrexProtocolDecoderTest extends ProtocolTest {

    @Disabled
    @Test
    public void testDecode() throws Exception {

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

        verifyPosition(decoder, binary(
                "TODO"));

    }

}