Skip to content

Commit f774b22

Browse files
committed
add some test
1 parent ae58cd9 commit f774b22

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from unittest import TestCase
2+
3+
import sys
4+
sys.path.append("./PathPlanning/ClosedLoopRRTStar/")
5+
sys.path.append("./PathPlanning/ReedsSheppPath/")
6+
7+
from PathPlanning.ClosedLoopRRTStar import closed_loop_rrt_star_car as m
8+
9+
print(__file__)
10+
11+
12+
class Test(TestCase):
13+
14+
def test1(self):
15+
m.show_animation = False
16+
m.main()
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("./PathTracking/model_predictive_speed_and_steer_control/")
5+
6+
from PathTracking.model_predictive_speed_and_steer_control import model_predictive_speed_and_steer_control 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)