Files
PythonRobotics/tests/test_informed_rrt_star.py
2018-06-09 09:26:33 +09:00

13 lines
208 B
Python

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