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

    @Test
    public void testDecode() throws Exception {

        var decoder = new R12wProtocolDecoder(null);

        verifyNull(decoder, text(
                "$HX,0001,860721009104316,e92c,933402042499509,55792760080,12345678,01,a8d940a9,#,50,"));

    }

}