rear_wheel_feedback clean up and add test code

This commit is contained in:
Atsushi Sakai
2017-12-26 10:50:39 -08:00
parent acf07aa1f9
commit fba64ca254
5 changed files with 75 additions and 111 deletions

View 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()