blob: 17b2526180abdf4ddb0773bd89e70c01f267dd08 (
plain)
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 org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.traccar.ProtocolTest;
public class T622IridiumProtocolDecoderTest extends ProtocolTest {
@Disabled
@Test
public void testDecode() throws Exception {
var decoder = inject(new T622IridiumProtocolDecoder(null));
decoder.setFormat("01,02,03,04,05,08");
verifyPosition(decoder, binary(
"01003301001c2a8cef8333303034333430363735343836353000001700006461d512020011232f03a0fff1c85d0612b3f02b00000048"));
}
}
|