Skip to content

Commit 6bbdbda

Browse files
committed
add test
1 parent 4072a21 commit 6bbdbda

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

tests/test_closed_loop_rrt_star_car.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
from unittest import TestCase
22

3-
import sys
4-
sys.path.append("./PathPlanning/ClosedLoopRRTStar/")
5-
sys.path.append("./PathPlanning/ReedsSheppPath/")
6-
7-
from PathPlanning.ClosedLoopRRTStar import closed_loop_rrt_star_car as m
3+
from SLAM.iterative_closest_point import iterative_closest_point as m
84

95
print(__file__)
106

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from unittest import TestCase
2+
3+
from PathPlanning.AStar import a_star 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()

0 commit comments

Comments
 (0)