From 3ee4d2fba538eee4d1774bd79e07c64dc0af97e5 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 13 Nov 2012 21:58:17 +1300 Subject: Added TR20 support (Fix #79) --- .../traccar/protocol/Tr20ProtocolDecoderTest.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/org/traccar/protocol/Tr20ProtocolDecoderTest.java (limited to 'test') diff --git a/test/org/traccar/protocol/Tr20ProtocolDecoderTest.java b/test/org/traccar/protocol/Tr20ProtocolDecoderTest.java new file mode 100644 index 000000000..aa978655b --- /dev/null +++ b/test/org/traccar/protocol/Tr20ProtocolDecoderTest.java @@ -0,0 +1,21 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import org.junit.Test; + +public class Tr20ProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + Tr20ProtocolDecoder decoder = new Tr20ProtocolDecoder(new TestDataManager()); + + assertNull(decoder.decode(null, null, "%%TRACKPRO01,1")); + + assertNotNull(decoder.decode(null, null, + "%%TR-10,A,050916070549,N2240.8887E11359.2994,0,000,NA,D3800000,150,CFG:resend|")); + + } + +} -- cgit v1.2.3