diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2011-11-11 12:18:08 +0000 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2011-11-11 12:18:08 +0000 |
commit | a88479f670fea8f6c7f5fdf13c7dffa67772d854 (patch) | |
tree | 3d9557e949a0002ed7ef186163cf270c7502a71e /test/net/sourceforge/opentracking/protocol/t55/T55ProtocolDecoderTest.java | |
parent | 139177767ab256033a5c3b71ea84b92c1dcbe504 (diff) | |
download | trackermap-server-a88479f670fea8f6c7f5fdf13c7dffa67772d854.tar.gz trackermap-server-a88479f670fea8f6c7f5fdf13c7dffa67772d854.tar.bz2 trackermap-server-a88479f670fea8f6c7f5fdf13c7dffa67772d854.zip |
Diffstat (limited to 'test/net/sourceforge/opentracking/protocol/t55/T55ProtocolDecoderTest.java')
-rw-r--r-- | test/net/sourceforge/opentracking/protocol/t55/T55ProtocolDecoderTest.java | 31 |
1 files changed, 6 insertions, 25 deletions
diff --git a/test/net/sourceforge/opentracking/protocol/t55/T55ProtocolDecoderTest.java b/test/net/sourceforge/opentracking/protocol/t55/T55ProtocolDecoderTest.java index b63f91524..009c94c5c 100644 --- a/test/net/sourceforge/opentracking/protocol/t55/T55ProtocolDecoderTest.java +++ b/test/net/sourceforge/opentracking/protocol/t55/T55ProtocolDecoderTest.java @@ -29,36 +29,17 @@ public class T55ProtocolDecoderTest { @Test public void testDecode() throws Exception { - - String test1 = "$PGID,359853000144328*0F"; - String test2 = "$GPRMC,094907.000,A,6000.5332,N,03020.5192,E,1.17,60.26,091111,,*33"; - //$GPRMC,115528.000,A,6000.5432,N,03020.4948,E,,,091111,,*06 - T55ProtocolDecoder decoder = new T55ProtocolDecoder(new TestDataManager(), 0); - decoder.decode(null, null, test1); - - Position position = (Position) decoder.decode(null, null, test2); - - 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()); + + assertNull(decoder.decode(null, null, "$PGID,359853000144328*0F")); - Double longitude = 1.0 + 2.0003 / 60.0; - assertEquals(longitude, position.getLongitude()); + assertNotNull(decoder.decode(null, null, + "$GPRMC,094907.000,A,6000.5332,N,03020.5192,E,1.17,60.26,091111,,*33")); - Double speed = 1.02; - assertEquals(speed, position.getSpeed()); + assertNotNull(decoder.decode(null, null, + "$GPRMC,115528.000,A,6000.5432,N,03020.4948,E,,,091111,,*06")); - Double course = 1.02; - assertEquals(course, position.getCourse()); - - Long deviceId = new Long(1); - assertEquals(deviceId, position.getDeviceId()); } } |