package org.traccar.protocol; import org.junit.Test; import org.traccar.ProtocolTest; public class TopinProtocolDecoderTest extends ProtocolTest { @Test public void testDecode() throws Exception { TopinProtocolDecoder decoder = new TopinProtocolDecoder(null); verifyNull(decoder, binary( "78780d0103593390754169634d0d0a")); verifyPosition(decoder, binary( "787812100a03170f32179c026b3f3e0c22ad651f34600d0a")); verifyAttributes(decoder, binary( "78780713514d0819640d0a")); } }