From 534a0107dccd91556252ca927852476628465a4d Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Fri, 18 Jan 2013 23:02:18 +1300 Subject: Add Megatek protocol (fix #112) --- .../traccar/protocol/MegastekProtocolDecoderTest.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 test/org/traccar/protocol/MegastekProtocolDecoderTest.java (limited to 'test/org/traccar/protocol/MegastekProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/MegastekProtocolDecoderTest.java b/test/org/traccar/protocol/MegastekProtocolDecoderTest.java new file mode 100644 index 000000000..d443f934c --- /dev/null +++ b/test/org/traccar/protocol/MegastekProtocolDecoderTest.java @@ -0,0 +1,19 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import org.junit.Test; + +public class MegastekProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + MegastekProtocolDecoder decoder = new MegastekProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + assertNotNull(decoder.decode(null, null, + "STX,102110830074542,$GPRMC,114229.000,A,2238.2024,N,11401.9619,E,0.00,0.00,310811,,,A*64,F,LowBattery,imei:012207005553885,03,113.1,Battery=24%,,1,460,01,2531,647E;57")); + + } + +} -- cgit v1.2.3