aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/SyrusProtocolDecoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/SyrusProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/SyrusProtocolDecoderTest.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/test/org/traccar/protocol/SyrusProtocolDecoderTest.java b/test/org/traccar/protocol/SyrusProtocolDecoderTest.java
index e257b07d9..fa48ce286 100644
--- a/test/org/traccar/protocol/SyrusProtocolDecoderTest.java
+++ b/test/org/traccar/protocol/SyrusProtocolDecoderTest.java
@@ -1,6 +1,7 @@
package org.traccar.protocol;
-import static org.junit.Assert.assertNotNull;
+import org.traccar.helper.TestDataManager;
+import static org.traccar.helper.DecoderVerifier.verify;
import org.junit.Test;
public class SyrusProtocolDecoderTest {
@@ -11,16 +12,16 @@ public class SyrusProtocolDecoderTest {
SyrusProtocolDecoder decoder = new SyrusProtocolDecoder(null);
decoder.setDataManager(new TestDataManager());
- assertNotNull(decoder.decode(null, null,
- ">RPV15714+3739438-1220384601512612;ID=1234;*7F"));
+ verify(decoder.decode(null, null,
+ ">RPV00000+3739438-1220384601512612;ID=1234;*7F"));
- assertNotNull(decoder.decode(null, null,
+ verify(decoder.decode(null, null,
"\r\n>REV691615354941+3570173+1397742703203212;ID=Test"));
- assertNotNull(decoder.decode(null, null,
+ verify(decoder.decode(null, null,
">REV481599462982+2578391-0802945201228512;ID=Test"));
- assertNotNull(decoder.decode(null, null,
+ verify(decoder.decode(null, null,
">REV131756153215+3359479-0075299001031332;VO=10568798;IO=310;SV=10;BL=4190;CV09=0;AD=0;AL=+47;ID=356612021059680"));
}