blob: 019c9252372671d9fb667451716c331d1565952b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package org.traccar.protocol;
import org.junit.Assert;
import org.junit.Test;
import org.traccar.model.Command;
public class Gps103ProtocolEncoderTest {
@Test
public void testEncode() throws Exception {
Gps103ProtocolEncoder encoder = new Gps103ProtocolEncoder();
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_POSITION_PERIODIC);
command.set(Command.KEY_FREQUENCY, 300);
Assert.assertEquals("**,imei:123456789012345,C,05m", encoder.encodeCommand(command));
}
}
|