blob: 15b25b9d925d3279d2a38712fe8e2b17db70f48c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package org.traccar.protocol;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
public class V680ProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
V680ProtocolDecoder decoder = new V680ProtocolDecoder(new TestDataManager());
assertNotNull(decoder.decode(null, null,
"#356823033219838#1000#0#1478#AUT#1#66830FFB#03855.6628,E,4716.6821,N,001.41,259#130812#143905"));
}
}
|