Skip to content

Commit 7c76331

Browse files
committed
add test
1 parent 05e4b0c commit 7c76331

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

tests/test_rrtdubins.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from unittest import TestCase
2+
3+
import sys
4+
sys.path.append("./PathPlanning/RRTDubins/")
5+
6+
from PathPlanning.RRTDubins import rrt_dubins as m
7+
8+
print(__file__)
9+
10+
11+
class Test(TestCase):
12+
13+
def test1(self):
14+
m.show_animation = False
15+
m.main()

0 commit comments

Comments
 (0)