diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/java/org/traccar/protocol/IotmProtocolDecoderTest.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/java/org/traccar/protocol/IotmProtocolDecoderTest.java b/src/test/java/org/traccar/protocol/IotmProtocolDecoderTest.java new file mode 100644 index 000000000..65fdb82e8 --- /dev/null +++ b/src/test/java/org/traccar/protocol/IotmProtocolDecoderTest.java @@ -0,0 +1,15 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class IotmProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + IotmProtocolDecoder decoder = new IotmProtocolDecoder(null); + + } + +} |