package org.traccar.protocol; import io.netty.handler.codec.http.HttpMethod; import org.junit.Test; import org.traccar.ProtocolTest; public class GlobalstarProtocolDecoderTest extends ProtocolTest { @Test public void testDecode() throws Exception { GlobalstarProtocolDecoder decoder = new GlobalstarProtocolDecoder(null); verifyPositions(decoder, request(HttpMethod.POST, "/", buffer( "", "", "", "0-2654816", "1550440592", "N", "0x00337BA619B7250A00", "", ""))); } }