diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-08-23 12:12:42 +1000 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-08-23 17:18:10 +1000 |
commit | 5536fbe00c022c151007ad077d911b5162201cd4 (patch) | |
tree | 63d42882d44668f9120ffb43a4fa9e2ab9a3c554 /test/org/traccar | |
parent | 083dc5075b005e42022eb995e4dce303fbfb38c6 (diff) | |
download | trackermap-server-5536fbe00c022c151007ad077d911b5162201cd4.tar.gz trackermap-server-5536fbe00c022c151007ad077d911b5162201cd4.tar.bz2 trackermap-server-5536fbe00c022c151007ad077d911b5162201cd4.zip |
Add commands to Mini Finder protocol
Diffstat (limited to 'test/org/traccar')
-rw-r--r-- | test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java b/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java new file mode 100644 index 000000000..875bfa13e --- /dev/null +++ b/test/org/traccar/protocol/MiniFinderProtocolEncoderTest.java @@ -0,0 +1,24 @@ +package org.traccar.protocol; + +import org.junit.Assert; +import org.junit.Test; +import org.traccar.ProtocolTest; +import org.traccar.model.Command; + +public class MiniFinderProtocolEncoderTest extends ProtocolTest { + + @Test + public void testEncode() throws Exception { + + MiniFinderProtocolEncoder encoder = new MiniFinderProtocolEncoder(); + + Command command = new Command(); + command.setDeviceId(1); + command.setType(Command.TYPE_SET_TIMEZONE); + command.set(Command.KEY_TIMEZONE, 3600); + + Assert.assertEquals("123456L+01", encoder.encodeCommand(command)); + + } + +} |