diff options
author | jon-stumpf <jon.stumpf@gmail.com> | 2014-10-10 22:25:02 -0400 |
---|---|---|
committer | jon-stumpf <jon.stumpf@gmail.com> | 2014-10-21 16:01:41 -0400 |
commit | f0790eba6f3194daf4677c27e8259f783aae3207 (patch) | |
tree | 7e206023124d1e9f1705af1f11d0eaede08edab1 /test/org/traccar/protocol/OrionProtocolDecoderTest.java | |
parent | 1948e0f63202dddca607dcb51fa9a92a83e49154 (diff) | |
download | trackermap-server-f0790eba6f3194daf4677c27e8259f783aae3207.tar.gz trackermap-server-f0790eba6f3194daf4677c27e8259f783aae3207.tar.bz2 trackermap-server-f0790eba6f3194daf4677c27e8259f783aae3207.zip |
Made BaseProtocolDecoder members "final" as they should not change after construction.
Diffstat (limited to 'test/org/traccar/protocol/OrionProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/OrionProtocolDecoderTest.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/org/traccar/protocol/OrionProtocolDecoderTest.java b/test/org/traccar/protocol/OrionProtocolDecoderTest.java index 9e37ab5a1..3ec8b257e 100644 --- a/test/org/traccar/protocol/OrionProtocolDecoderTest.java +++ b/test/org/traccar/protocol/OrionProtocolDecoderTest.java @@ -13,8 +13,7 @@ public class OrionProtocolDecoderTest { @Test public void testDecode() throws Exception { - OrionProtocolDecoder decoder = new OrionProtocolDecoder(null); - decoder.setDataManager(new TestDataManager()); + OrionProtocolDecoder decoder = new OrionProtocolDecoder(new TestDataManager()); verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ByteOrder.LITTLE_ENDIAN, ChannelBufferTools.convertArray( new int[] {0x50,0x57,0x00,0x41,0x07,0x36,0x7C,0x24,0x2B,0x44,0x09,0x01,0xAD,0xE9,0x7D,0x01,0x63,0x14,0x3B,0x07,0xB0,0x03,0x00,0x00,0x00,0x00,0x0D,0x04,0x19,0x17,0x38,0x2D,0x00,0x0B,0x01,0x01,0x00,0x05,0x11,0x00,0x00,0x00,0x00,0x06,0x82,0x05,0x00,0x00,0x00,0x8E,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x8C,0x03,0x00,0x84,0x03,0x00,0x85,0x03,0x00,0x09,0x0A,0x00,0x00,0x00,0x00,0x48,0x01,0x00,0x00,0x00,0x8A,0xFC})))); |