mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 18:28:14 -05:00
17 lines
273 B
Python
17 lines
273 B
Python
from unittest import TestCase
|
|
|
|
import sys
|
|
sys.path.append("./PathPlanning/BezierPath/")
|
|
|
|
from PathPlanning.BezierPath import bezier_path as m
|
|
|
|
print(__file__)
|
|
|
|
|
|
class Test(TestCase):
|
|
|
|
def test1(self):
|
|
m.show_animation = False
|
|
m.main()
|
|
m.main2()
|