Skip to content

Commit 9daeb4b

Browse files
committed
add lqr rrt star test
1 parent 6c65fc3 commit 9daeb4b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tests/test_lqr_rrt_star.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from unittest import TestCase
2+
3+
import sys
4+
sys.path.append("./PathPlanning/LQRRRTStar/")
5+
6+
from PathPlanning.LQRRRTStar import lqr_rrt_star as m
7+
8+
print(__file__)
9+
10+
11+
class Test(TestCase):
12+
13+
def test1(self):
14+
m.show_animation = False
15+
m.main()

0 commit comments

Comments
 (0)