We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e5c725 commit 9965bf8Copy full SHA for 9965bf8
tests/test_ekf_slam.py
@@ -0,0 +1,12 @@
1
+from unittest import TestCase
2
+
3
+from SLAM.EKFSLAM import ekf_slam as m
4
5
+print(__file__)
6
7
8
+class Test(TestCase):
9
10
+ def test1(self):
11
+ m.show_animation = False
12
+ m.main()
tests/test_iterative_closest_point.py
@@ -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__)
0 commit comments