Skip to content

Commit

Permalink
add test for EKF slam
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed Mar 7, 2018
1 parent 2e5c725 commit 9965bf8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions tests/test_ekf_slam.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from unittest import TestCase

from SLAM.EKFSLAM import ekf_slam as m

print(__file__)


class Test(TestCase):

def test1(self):
m.show_animation = False
m.main()
2 changes: 1 addition & 1 deletion tests/test_iterative_closest_point.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from unittest import TestCase

from PathPlanning.AStar import a_star as m
from SLAM.iterative_closest_point import iterative_closest_point as m

print(__file__)

Expand Down

0 comments on commit 9965bf8

Please sign in to comment.