1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package org.traccar.protocol;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
public class WondexProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
WondexProtocolDecoder decoder = new WondexProtocolDecoder(null);
decoder.setDataManager(new TestDataManager());
assertNotNull(decoder.decode(null, null,
"210000001,20070313170040,121.123456,12.654321,0,233,0,9,2,0.0,0,0.00,0.00,0"));
assertNotNull(decoder.decode(null, null,
"1044989601,20130322172647,13.572583,52.401070,22,204,49,0,2"));
}
}
|