Files
PythonRobotics/tests/test_rrt_star.py
Atsushi Sakai af5597fb89 fix test
2018-01-10 11:42:37 -08:00

13 lines
191 B
Python

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