Files
PythonRobotics/tests/test_clothoidal_paths.py
Atsushi Sakai 38261ec67e clean up clothoidal_paths.py (#638)
* clean up clothoidal_paths.py

* add unit tests for clothoid_paths

* add unit tests for clothoid_paths

* add unit tests for clothoid_paths

* code clean up

* code clean up

* code clean up

* code clean up

* code clean up

* code clean up

* code clean up

* code clean up
2022-04-10 19:30:31 +09:00

12 lines
205 B
Python

import conftest
from PathPlanning.ClothoidPath import clothoid_path_planner as m
def test_1():
m.show_animation = False
m.main()
if __name__ == '__main__':
conftest.run_this_test(__file__)