blob: 2a7af23baf865b5921ce3a5b5da7d84e0dd201f0 (
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.jupiter.api.Test;
import org.traccar.model.Position;
import org.traccar.reports.common.TripsConfig;
import static org.junit.jupiter.api.Assertions.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));
}
}
|