aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/MiniFinderProtocolDecoderTest.java
blob: 27c88216f3a87f1a14ee8c152999dce5fe9b4f94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 MiniFinderProtocolDecoderTest extends ProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        MiniFinderProtocolDecoder decoder = new MiniFinderProtocolDecoder(null);

        assertNull(decoder.decode(null, null, "!1,860719020212696"));

        verify(decoder.decode(null, null,
                "!D,22/2/14,13:40:58,56.899601,14.811541,0,0,1,176.0,98,5,16,0"));

        verify(decoder.decode(null, null,
                "!D,22/2/14,13:47:51,56.899517,14.811665,0,0,b0001,179.3,97,5,16,0"));

    }

}