mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 03:58:35 -05:00
add test
This commit is contained in:
@@ -1,10 +1,6 @@
|
||||
from unittest import TestCase
|
||||
|
||||
import sys
|
||||
sys.path.append("./PathPlanning/ClosedLoopRRTStar/")
|
||||
sys.path.append("./PathPlanning/ReedsSheppPath/")
|
||||
|
||||
from PathPlanning.ClosedLoopRRTStar import closed_loop_rrt_star_car as m
|
||||
from SLAM.iterative_closest_point import iterative_closest_point as m
|
||||
|
||||
print(__file__)
|
||||
|
||||
|
||||
12
tests/test_iterative_closest_point.py
Normal file
12
tests/test_iterative_closest_point.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from PathPlanning.AStar import a_star as m
|
||||
|
||||
print(__file__)
|
||||
|
||||
|
||||
class Test(TestCase):
|
||||
|
||||
def test1(self):
|
||||
m.show_animation = False
|
||||
m.main()
|
||||
Reference in New Issue
Block a user