aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/GalileoProtocolDecoderTest.java
blob: d1706e5bef1e241327e699af569540b6dbed2fda (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.jboss.netty.buffer.ChannelBuffers;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;

public class GalileoProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        GalileoProtocolDecoder decoder = new GalileoProtocolDecoder(null);
        decoder.setDataManager(new TestDataManager());

        /*byte[] buf1 = {0x00};
        assertNotNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(buf1)));*/

    }

}