mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 19:28:02 -05:00
12 lines
210 B
Python
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()
|