Files
PythonRobotics/tests/test_frenet_optimal_trajectory.py
Atsushi Sakai bc79d02eba add test
2018-01-12 21:50:44 -08:00

16 lines
295 B
Python

from unittest import TestCase
import sys
sys.path.append("./PathPlanning/FrenetOptimalTrajectory/")
from PathPlanning.FrenetOptimalTrajectory import frenet_optimal_trajectory as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()