blob: aa73ac60ace8237c34532f384e7dc45fa219138f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package org.traccar.handler;
import org.junit.Test;
import org.traccar.model.Position;
import org.traccar.reports.model.TripsConfig;
import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public class MotionHandlerTest {
@Test
public void testCalculateMotion() {
TripsConfig tripsConfig = mock(TripsConfig.class);
when(tripsConfig.getSpeedThreshold()).thenReturn(0.01);
MotionHandler motionHandler = new MotionHandler(tripsConfig);
Position position = motionHandler.handlePosition(new Position());
assertEquals(false, position.getAttributes().get(Position.KEY_MOTION));
}
}
|