Files
PythonRobotics/tests/test_reeds_shepp_path_planning.py
Atsushi Sakai 7f40e1d374 add test codes
2018-01-17 18:17:39 -08:00

10 lines
197 B
Python

from unittest import TestCase
from PathPlanning.ReedsSheppPath import reeds_shepp_path_planning as m
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()