From 3ae842837ddc8b0070a726d4e25cb700d30f286b Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 3 Jun 2013 16:12:35 +1200 Subject: Start GlobalSat decoder --- .../protocol/GlobalSatProtocolDecoderTest.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/org/traccar/protocol/GlobalSatProtocolDecoderTest.java (limited to 'test/org') 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!")); + + } + +} -- cgit v1.2.3