diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-09-22 14:22:01 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-22 14:22:01 +1200 |
commit | a6fa965fd1d7fc55c891f9bba4913fcfe68b086c (patch) | |
tree | f840a542096c653d7dafc6df37645893d423d9d1 /test/org/traccar/events | |
parent | 76639c6b2284a5dfc4b45c17e533788dd739bcf1 (diff) | |
parent | 36ad4ac525b8eb25ac1c2eed8c05d690754399c5 (diff) | |
download | trackermap-server-a6fa965fd1d7fc55c891f9bba4913fcfe68b086c.tar.gz trackermap-server-a6fa965fd1d7fc55c891f9bba4913fcfe68b086c.tar.bz2 trackermap-server-a6fa965fd1d7fc55c891f9bba4913fcfe68b086c.zip |
Merge pull request #3540 from Abyss777/check_valid_optional
Make check for valid in MotionEventHandler optional
Diffstat (limited to 'test/org/traccar/events')
-rw-r--r-- | test/org/traccar/events/MotionEventHandlerTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/org/traccar/events/MotionEventHandlerTest.java b/test/org/traccar/events/MotionEventHandlerTest.java index b88328e58..3fc63adf0 100644 --- a/test/org/traccar/events/MotionEventHandlerTest.java +++ b/test/org/traccar/events/MotionEventHandlerTest.java @@ -31,7 +31,7 @@ public class MotionEventHandlerTest extends BaseTest { @Test public void testMotionWithPosition() throws Exception { MotionEventHandler motionEventHandler = new MotionEventHandler( - new TripsConfig(500, 300 * 1000, 300 * 1000, 0, false)); + new TripsConfig(500, 300 * 1000, 300 * 1000, 0, false, false, 0.01)); Position position = new Position(); position.setTime(date("2017-01-01 00:00:00")); @@ -72,7 +72,7 @@ public class MotionEventHandlerTest extends BaseTest { @Test public void testMotionWithStatus() throws Exception { MotionEventHandler motionEventHandler = new MotionEventHandler( - new TripsConfig(500, 300 * 1000, 300 * 1000, 0, false)); + new TripsConfig(500, 300 * 1000, 300 * 1000, 0, false, false, 0.01)); Position position = new Position(); position.setTime(new Date(System.currentTimeMillis() - 360000)); @@ -93,7 +93,7 @@ public class MotionEventHandlerTest extends BaseTest { @Test public void testStopWithPositionIgnition() throws Exception { MotionEventHandler motionEventHandler = new MotionEventHandler( - new TripsConfig(500, 300 * 1000, 300 * 1000, 0, true)); + new TripsConfig(500, 300 * 1000, 300 * 1000, 0, true, false, 0.01)); Position position = new Position(); position.setTime(date("2017-01-01 00:00:00")); |