add test and code clean up

This commit is contained in:
Atsushi Sakai
2018-01-12 09:22:24 -08:00
parent a8bd1c7509
commit f00e8db3e8
4 changed files with 37 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
from unittest import TestCase
import sys
sys.path.append("./PathPlanning/RRTStarDubins/")
from PathPlanning.RRTStarDubins import rrt_star_dubins as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()