diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/org/traccar/protocol/GlobalSatProtocolDecoderTest.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/GlobalSatProtocolDecoderTest.java b/test/org/traccar/protocol/GlobalSatProtocolDecoderTest.java new file mode 100644 index 000000000..44cd613d7 --- /dev/null +++ b/test/org/traccar/protocol/GlobalSatProtocolDecoderTest.java @@ -0,0 +1,22 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import org.junit.Test; + +public class GlobalSatProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + GlobalSatProtocolDecoder decoder = new GlobalSatProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + //assertNull(decoder.decode(null, null, "GSh,131826789036289,3,M,ea04*3d!")); + + assertNotNull(decoder.decode(null, null, + "GSr,135785412249986,01,I,EA02,,3,230410,153318,E12129.2839,N2459.8570,0,1.17,212,8,1.0,12.3V*55!")); + + } + +} |