Skip to content

Commit

Permalink
add lqr_speed_steer_control test
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed Jan 19, 2018
1 parent c9ec8e3 commit c71c3a1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/test_lqr_speed_steer_control.py
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit c71c3a1

Please sign in to comment.