add some test

This commit is contained in:
Atsushi Sakai
2018-02-15 14:22:41 -08:00
parent ae58cd98df
commit f774b226c2
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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()

View File

@@ -0,0 +1,15 @@
from unittest import TestCase
import sys
sys.path.append("./PathTracking/model_predictive_speed_and_steer_control/")
from PathTracking.model_predictive_speed_and_steer_control import model_predictive_speed_and_steer_control as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()