mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 21:08:19 -05:00
add some test
This commit is contained in:
16
tests/test_closed_loop_rrt_star_car.py
Normal file
16
tests/test_closed_loop_rrt_star_car.py
Normal 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()
|
||||
15
tests/test_model_predictive_speed_and_steer_control.py
Normal file
15
tests/test_model_predictive_speed_and_steer_control.py
Normal 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()
|
||||
Reference in New Issue
Block a user