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 static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import org.junit.Test;
public class GlobalSatProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
GlobalSatProtocolDecoder decoder = new GlobalSatProtocolDecoder(null);
decoder.setDataManager(new TestDataManager());
//assertNull(decoder.decode(null, null, "GSh,131826789036289,3,M,ea04*3d!"));
//TSPRXAB27GHKLMnaicz
assertNotNull(decoder.decode(null, null,
"GSr,1,135785412249986,01,I,EA02,3,230410,153318,E12129.2839,N2459.8570,0,1.17,212,8,1.0,12.3V*55!"));
}
}
|