Files
PythonRobotics/tests/test_rrt_star_dubins.py
2020-02-26 20:37:45 +09:00

27 lines
418 B
Python

from unittest import TestCase
import sys
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__))
+ "/../PathPlanning/RRTStarDubins/")
try:
import rrt_star_dubins as m
except:
raise
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()
if __name__ == '__main__': # pragma: no cover
test = Test()
test.test1()