blob: ead8c980b3dc87edd1c8864ac1117530e0559140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package org.traccar.protocol;
import org.traccar.helper.TestDataManager;
import static org.traccar.helper.DecoderVerifier.verify;
import static org.junit.Assert.assertNull;
import org.junit.Test;
public class FreedomProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
FreedomProtocolDecoder decoder = new FreedomProtocolDecoder(null);
decoder.setDataManager(new TestDataManager());
verify(decoder.decode(null, null,
"IMEI,353358011714362,2014/05/22, 20:49:32, N, Lat:4725.9624, E, Lon:01912.5483, Spd:5.05"));
}
}
|