Files
PythonRobotics/tests/test_state_lattice_planner.py
2018-01-14 09:32:17 -08:00

19 lines
422 B
Python

from unittest import TestCase
import sys
sys.path.append("./PathPlanning/ModelPredictiveTrajectoryGenerator/")
sys.path.append("./PathPlanning/StateLatticePlanner/")
from PathPlanning.StateLatticePlanner import state_lattice_planner as m
m.table_path = "./PathPlanning/StateLatticePlanner/lookuptable.csv"
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()