blob: aca184b4acd2b775559847d790cc6623311d87d8 (
plain)
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 HaicomProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
HaicomProtocolDecoder decoder = new HaicomProtocolDecoder(null);
decoder.setDataManager(new TestDataManager());
verify(decoder.decode(null, null,
"$GPRS123456789012345,602S19A,100915,063515,7240649312041079,0019,3156,111000,10004,0000,11111,00LH#V037"));
}
}
|