mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 15:08:03 -05:00
10 lines
197 B
Python
10 lines
197 B
Python
from unittest import TestCase
|
|
from PathPlanning.ReedsSheppPath import reeds_shepp_path_planning as m
|
|
|
|
|
|
class Test(TestCase):
|
|
|
|
def test1(self):
|
|
m.show_animation = False
|
|
m.main()
|