diff options
author | Christoph Krey <krey.christoph@gmail.com> | 2017-06-30 08:10:20 +0200 |
---|---|---|
committer | Christoph Krey <krey.christoph@gmail.com> | 2017-06-30 08:10:20 +0200 |
commit | 2a3e2325885adbd76818170b935ee6de85e0ea1a (patch) | |
tree | 5c545d26f9f229ca0599f716f8e967df4b28a90f /test/org/traccar/protocol | |
parent | 42cf2358fefa5176a3c72478a778ae382c9e1836 (diff) | |
download | trackermap-server-2a3e2325885adbd76818170b935ee6de85e0ea1a.tar.gz trackermap-server-2a3e2325885adbd76818170b935ee6de85e0ea1a.tar.bz2 trackermap-server-2a3e2325885adbd76818170b935ee6de85e0ea1a.zip |
[FIX] don't test frame decoder in protocol decoder test
Diffstat (limited to 'test/org/traccar/protocol')
-rw-r--r-- | test/org/traccar/protocol/AplicomProtocolDecoderTest.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/AplicomProtocolDecoderTest.java b/test/org/traccar/protocol/AplicomProtocolDecoderTest.java index 51002924d..3c71e86b3 100644 --- a/test/org/traccar/protocol/AplicomProtocolDecoderTest.java +++ b/test/org/traccar/protocol/AplicomProtocolDecoderTest.java @@ -8,7 +8,6 @@ public class AplicomProtocolDecoderTest extends ProtocolTest { @Test
public void testDecode() throws Exception {
- AplicomFrameDecoder frameDecoder = new AplicomFrameDecoder();
AplicomProtocolDecoder decoder = new AplicomProtocolDecoder(new AplicomProtocol());
verifyAttributes(decoder, binary(
@@ -71,9 +70,6 @@ public class AplicomProtocolDecoderTest extends ProtocolTest { verifyPosition(decoder, binary(
"44C20146B710C158DA009500B09F7700C054CA0EA454CA0EA403BE0BF6015D706B070000142A600000000000000002434946010801000754CA0EA4000000000000008400000000000000000000000000000000300000FE00FE0000000000000000000000000000000000000000000000000000000000000000000040502035000000000000020D0000030D0000040C0000040D0000050C0000050D0000058C0000060C"));
- verifyPosition(decoder, frameDecoder.decode(null, null,
- binary("33353733303030373030393233333644C20146B710C158DA009500B09F7700C054CA0EA454CA0EA403BE0BF6015D706B070000142A600000000000000002434946010801000754CA0EA4000000000000008400000000000000000000000000000000300000FE00FE0000000000000000000000000000000000000000000000000000000000000000000040502035000000000000020D0000030D0000040C0000040D0000050C0000050D0000058C0000060C")));
-
}
}
|