diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2019-03-31 22:35:39 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2019-03-31 22:35:39 -0700 |
commit | 59416923dcb3a756eaf532cc4259f2f6625c0762 (patch) | |
tree | 9082dae6616deac8fda432b7bfd80e4a52b6d9dc /test/org/traccar/protocol/Jt600ProtocolEncoderTest.java | |
parent | 79a129dd6327d932133d6b9a50190d3f4927bff9 (diff) | |
download | trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.tar.gz trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.tar.bz2 trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.zip |
Convert project to gradle
Diffstat (limited to 'test/org/traccar/protocol/Jt600ProtocolEncoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/Jt600ProtocolEncoderTest.java | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/test/org/traccar/protocol/Jt600ProtocolEncoderTest.java b/test/org/traccar/protocol/Jt600ProtocolEncoderTest.java deleted file mode 100644 index 100d7492a..000000000 --- a/test/org/traccar/protocol/Jt600ProtocolEncoderTest.java +++ /dev/null @@ -1,37 +0,0 @@ -package org.traccar.protocol; - -import static org.junit.Assert.assertEquals; - -import org.junit.Test; -import org.traccar.ProtocolTest; -import org.traccar.model.Command; - -public class Jt600ProtocolEncoderTest extends ProtocolTest { - Jt600ProtocolEncoder encoder = new Jt600ProtocolEncoder(); - Command command = new Command(); - - @Test - public void testEngineStop() throws Exception { - command.setType(Command.TYPE_ENGINE_STOP); - assertEquals("(S07,0)", encoder.encodeCommand(command)); - } - - @Test - public void testEngineResume() throws Exception { - command.setType(Command.TYPE_ENGINE_RESUME); - assertEquals("(S07,1)", encoder.encodeCommand(command)); - } - - @Test - public void testSetTimezone() throws Exception { - command.setType(Command.TYPE_SET_TIMEZONE); - command.set(Command.KEY_TIMEZONE, "GMT+4"); - assertEquals("(S09,1,240)", encoder.encodeCommand(command)); - } - - @Test - public void testReboot() throws Exception { - command.setType(Command.TYPE_REBOOT_DEVICE); - assertEquals("(S17)", encoder.encodeCommand(command)); - } -} |