1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package org.traccar.protocol;
import org.traccar.helper.TestDataManager;
import static org.traccar.helper.DecoderVerifier.verify;
import org.junit.Test;
public class Stl060ProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
Stl060ProtocolDecoder decoder = new Stl060ProtocolDecoder(null);
decoder.setDataManager(new TestDataManager());
verify(decoder.decode(null, null,
"$1,357804047969310,D001,AP29AW0963,01/01/13,13:24:47,1723.9582N,07834.0945E,00100,010,0,0,0,0,0,A,"));
}
}
|