Files
PythonRobotics/tests/test_rrt_star.py
2018-01-10 11:39:13 -08:00

14 lines
209 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()
m.main2()