This commit is contained in:
Atsushi Sakai
2018-02-23 20:34:26 -08:00
parent 4072a21a0b
commit 6bbdbdaef4
2 changed files with 13 additions and 5 deletions

View File

@@ -1,10 +1,6 @@
from unittest import TestCase
import sys
sys.path.append("./PathPlanning/ClosedLoopRRTStar/")
sys.path.append("./PathPlanning/ReedsSheppPath/")
from PathPlanning.ClosedLoopRRTStar import closed_loop_rrt_star_car as m
from SLAM.iterative_closest_point import iterative_closest_point as m
print(__file__)

View File

@@ -0,0 +1,12 @@
from unittest import TestCase
from PathPlanning.AStar import a_star as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()