aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java b/test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java
index 6e3ef6c8a..28237b5b2 100644
--- a/test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java
+++ b/test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java
@@ -1,9 +1,8 @@
package org.traccar.protocol;
import org.junit.Test;
+import org.traccar.ProtocolDecoderTest;
-import static org.junit.Assert.assertNull;
-import static org.traccar.helper.DecoderVerifier.verify;
public class GpsMarkerProtocolDecoderTest extends ProtocolDecoderTest {
@@ -13,16 +12,16 @@ public class GpsMarkerProtocolDecoderTest extends ProtocolDecoderTest {
GpsMarkerProtocolDecoder decoder = new GpsMarkerProtocolDecoder(new GpsMarkerProtocol());
- assertNull(decoder.decode(null, null,
+ verifyNothing(decoder, text(
"$GM300350123456789012T100511123300G25000001772F185200000000000000005230298#"));
- verify(decoder.decode(null, null,
+ verifyPosition(decoder, text(
"$GM200350123456789012T100511123300N55516789E03756123400000035230298#"));
- verify(decoder.decode(null, null,
+ verifyPosition(decoder, text(
"$GM1350123456789012T1005111233N55516789E03756123400000035200298#"));
- verify(decoder.decode(null, null,
+ verifyPosition(decoder, text(
"$GM203863071014445404T150715202258N55481576E03729275300000040530301#"));
}