blob: 6e3ef6c8a7bb71db6d1436f3c25e4e3d149f0e0d (
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
26
27
28
29
30
|
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());
assertNull(decoder.decode(null, null,
"$GM300350123456789012T100511123300G25000001772F185200000000000000005230298#"));
verify(decoder.decode(null, null,
"$GM200350123456789012T100511123300N55516789E03756123400000035230298#"));
verify(decoder.decode(null, null,
"$GM1350123456789012T1005111233N55516789E03756123400000035200298#"));
verify(decoder.decode(null, null,
"$GM203863071014445404T150715202258N55481576E03729275300000040530301#"));
}
}
|