Files
PythonRobotics/tests/test_a_star.py
2019-02-03 12:08:20 +09:00

11 lines
170 B
Python

from unittest import TestCase
from PathPlanning.AStar import a_star as m
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()