Files
PythonRobotics/tests/test_pure_pursuit.py
2017-12-23 19:03:03 -08:00

12 lines
210 B
Python

from unittest import TestCase
from PathTracking.pure_pursuit import pure_pursuit as m
print("pure_pursuit test")
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()