mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 10:37:54 -05:00
add lqr rrt star test
This commit is contained in:
15
tests/test_lqr_rrt_star.py
Normal file
15
tests/test_lqr_rrt_star.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from unittest import TestCase
|
||||
|
||||
import sys
|
||||
sys.path.append("./PathPlanning/LQRRRTStar/")
|
||||
|
||||
from PathPlanning.LQRRRTStar import lqr_rrt_star as m
|
||||
|
||||
print(__file__)
|
||||
|
||||
|
||||
class Test(TestCase):
|
||||
|
||||
def test1(self):
|
||||
m.show_animation = False
|
||||
m.main()
|
||||
Reference in New Issue
Block a user