aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/TopflytechProtocolDecoderTest.java
blob: 3f84165bf2e9ddc889ce56379a6982a236f07ed0 (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.traccar.helper.TestDataManager;
import static org.traccar.helper.DecoderVerifier.verify;
import static org.junit.Assert.assertNull;
import org.junit.Test;

public class TopflytechProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        TopflytechProtocolDecoder decoder = new TopflytechProtocolDecoder(new TestDataManager());

        verify(decoder.decode(null, null,
                "(880316890094910BP00XG00b600000000L00074b54S00000000R0C0F0014000100f0130531152205A0706.1395S11024.0965E000.0251.25"));

    }

}