blob: 9e08596645370bcd5e8a8f84fd3f60d440edc52a (
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.handler;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.traccar.model.Position;
public class MotionHandlerTest {
@Test
public void testCalculateMotion() {
MotionHandler motionHandler = new MotionHandler(0.01);
Position position = motionHandler.handlePosition(new Position());
assertEquals(false, position.getAttributes().get(Position.KEY_MOTION));
}
}
|