mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 22:38:09 -05:00
rear_wheel_feedback clean up and add test code
This commit is contained in:
15
tests/test_rear_wheel_feedback.py
Normal file
15
tests/test_rear_wheel_feedback.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from unittest import TestCase
|
||||
|
||||
import sys
|
||||
sys.path.append("./PathTracking/rear_wheel_feedback/")
|
||||
|
||||
from PathTracking.rear_wheel_feedback import rear_wheel_feedback as m
|
||||
|
||||
print(__file__)
|
||||
|
||||
|
||||
class Test(TestCase):
|
||||
|
||||
def test1(self):
|
||||
m.show_animation = False
|
||||
m.main()
|
||||
Reference in New Issue
Block a user