Files
PythonRobotics/tests/test_rrt_dubins.py
Atsushi Sakai bc79d02eba add test
2018-01-12 21:50:44 -08:00

16 lines
252 B
Python

from unittest import TestCase
import sys
sys.path.append("./PathPlanning/RRTDubins/")
from PathPlanning.RRTDubins import rrt_dubins as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()