mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 19:48:02 -05:00
21 lines
353 B
Python
21 lines
353 B
Python
from unittest import TestCase
|
|
import sys
|
|
import os
|
|
sys.path.append(os.path.dirname(__file__) + "/../")
|
|
try:
|
|
from PathPlanning.AStar import a_star as m
|
|
except:
|
|
raise
|
|
|
|
|
|
class Test(TestCase):
|
|
|
|
def test1(self):
|
|
m.show_animation = False
|
|
m.main()
|
|
|
|
|
|
if __name__ == '__main__': # pragma: no cover
|
|
test = Test()
|
|
test.test1()
|