mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 18:28:14 -05:00
11 lines
189 B
Python
11 lines
189 B
Python
|
|
from unittest import TestCase
|
|
from PathPlanning.Eta3SplinePath import eta3_spline_path as m
|
|
|
|
|
|
class Test(TestCase):
|
|
|
|
def test1(self):
|
|
m.show_animation = False
|
|
m.main()
|