mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-02-15 19:04:57 -05:00
add test and code clean up
This commit is contained in:
15
tests/test_rrt_star_dubins.py
Normal file
15
tests/test_rrt_star_dubins.py
Normal 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()
|
||||
Reference in New Issue
Block a user