Files
PythonRobotics/tests/test_closed_loop_rrt_star_car.py
Atsushi Sakai f774b226c2 add some test
2018-02-15 14:22:41 -08:00

17 lines
332 B
Python

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
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()