aboutsummaryrefslogtreecommitdiff
path: root/test/net/sourceforge/opentracking/protocol/gl200/Gl200ProtocolDecoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/net/sourceforge/opentracking/protocol/gl200/Gl200ProtocolDecoderTest.java')
-rw-r--r--test/net/sourceforge/opentracking/protocol/gl200/Gl200ProtocolDecoderTest.java24
1 files changed, 4 insertions, 20 deletions
diff --git a/test/net/sourceforge/opentracking/protocol/gl200/Gl200ProtocolDecoderTest.java b/test/net/sourceforge/opentracking/protocol/gl200/Gl200ProtocolDecoderTest.java
index 09d7b0b35..53f1eebf8 100644
--- a/test/net/sourceforge/opentracking/protocol/gl200/Gl200ProtocolDecoderTest.java
+++ b/test/net/sourceforge/opentracking/protocol/gl200/Gl200ProtocolDecoderTest.java
@@ -30,28 +30,12 @@ public class Gl200ProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
-
- String testMsg1 = "+RESP:GTFRI,020102,000035988863964,,0,0,1,1,4.3,92,70.0,121.354335,31.222073,20090214013254,0460,0000,18d8,6141,00,,20090214093254,11F0";
-
+
Gl200ProtocolDecoder decoder = new Gl200ProtocolDecoder(new TestDataManager(), 0);
- Position position = (Position) decoder.decode(null, null, testMsg1);
-
- //Date time = new GregorianCalendar(2003, 1, 1, 1, 2, 3).getTime();
- //assertEquals(time, position.getTime());
-
- assertEquals(true, position.getValid());
-
- Double latitude = 1.0 + 2.0003 / 60.0;
- assertEquals(latitude, position.getLatitude());
-
- Double longitude = 1.0 + 2.0003 / 60.0;
- assertEquals(longitude, position.getLongitude());
-
- Double speed = 1.02;
- assertEquals(speed, position.getSpeed());
+
+ assertNotNull(decoder.decode(null, null,
+ "+RESP:GTFRI,020102,000035988863964,,0,0,1,1,4.3,92,70.0,121.354335,31.222073,20090214013254,0460,0000,18d8,6141,00,,20090214093254,11F0"));
- Long deviceId = new Long(1);
- assertEquals(deviceId, position.getDeviceId());
}
}