Files
PythonRobotics/tests/test_visibility_road_map_planner.py
2020-02-29 14:46:43 +09:00

18 lines
341 B
Python

import sys
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__))
+ "/../PathPlanning/VoronoiRoadMap/")
from unittest import TestCase
from PathPlanning.VoronoiRoadMap import voronoi_road_map as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()