diff options
Diffstat (limited to 'test/org/traccar/protocol/GalileoProtocolEncoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/GalileoProtocolEncoderTest.java | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/test/org/traccar/protocol/GalileoProtocolEncoderTest.java b/test/org/traccar/protocol/GalileoProtocolEncoderTest.java deleted file mode 100644 index 34423578d..000000000 --- a/test/org/traccar/protocol/GalileoProtocolEncoderTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package org.traccar.protocol; - -import org.junit.Test; -import org.traccar.ProtocolTest; -import org.traccar.model.Command; - -public class GalileoProtocolEncoderTest extends ProtocolTest { - - @Test - public void testEncode() throws Exception { - - GalileoProtocolEncoder encoder = new GalileoProtocolEncoder(); - - Command command = new Command(); - command.setDeviceId(1); - command.setType(Command.TYPE_CUSTOM); - command.set(Command.KEY_DATA, "status"); - - verifyCommand(encoder, command, binary("01200003313233343536373839303132333435040000e000000000e1067374617475731f64")); - - } - -} |