aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/WondexProtocolDecoderTest.java (renamed from test/org/traccar/protocol/Vt300ProtocolDecoderTest.java)7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/org/traccar/protocol/Vt300ProtocolDecoderTest.java b/test/org/traccar/protocol/WondexProtocolDecoderTest.java
index 5a1bf685f..e8e52c149 100644
--- a/test/org/traccar/protocol/Vt300ProtocolDecoderTest.java
+++ b/test/org/traccar/protocol/WondexProtocolDecoderTest.java
@@ -3,17 +3,20 @@ package org.traccar.protocol;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
-public class Vt300ProtocolDecoderTest {
+public class WondexProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
- Vt300ProtocolDecoder decoder = new Vt300ProtocolDecoder(null);
+ WondexProtocolDecoder decoder = new WondexProtocolDecoder(null);
decoder.setDataManager(new TestDataManager());
assertNotNull(decoder.decode(null, null,
"210000001,20070313170040,121.123456,12.654321,0,233,0,9,2,0.0,0,0.00,0.00,0"));
+ assertNotNull(decoder.decode(null, null,
+ "1044989601,20130322172647,13.572583,52.401070,22,204,49,0,2"));
+
}
}