Files
PythonRobotics/tests/test_quintic_polynomials_planner.py
Atsushi Sakai 3387ca96c6 add tests
2018-01-06 20:55:14 -08:00

13 lines
228 B
Python

from unittest import TestCase
from PathPlanning.QuinticPolynomialsPlanner import quintic_polynomials_planner as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()