Skip to content

Commit c71c3a1

Browse files
committed
add lqr_speed_steer_control test
1 parent c9ec8e3 commit c71c3a1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tests/test_lqr_speed_steer_control.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("./PathTracking/lqr_speed_steer_control/")
5+
6+
from PathTracking.lqr_speed_steer_control import lqr_speed_steer_control 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)