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

import org.junit.Test;

import static org.junit.Assert.assertNull;
import static org.traccar.helper.DecoderVerifier.verify;

public class GpsMarkerProtocolDecoderTest extends ProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        GpsMarkerProtocolDecoder decoder = new GpsMarkerProtocolDecoder(new GpsMarkerProtocol());

        verify(decoder.decode(null, null,
                "$GM1350123456789012T1005111233N55516789E03756123400000035200298#"));

        verify(decoder.decode(null, null,
                "$GM203863071014445404T150715202258N55481576E03729275300000040530301#"));

    }

}