mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-02-17 01:44:07 -05:00
add lqr_speed_steer_control test
This commit is contained in:
15
tests/test_lqr_speed_steer_control.py
Normal file
15
tests/test_lqr_speed_steer_control.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from unittest import TestCase
|
||||
|
||||
import sys
|
||||
sys.path.append("./PathTracking/lqr_speed_steer_control/")
|
||||
|
||||
from PathTracking.lqr_speed_steer_control import lqr_speed_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