mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 11:37:56 -05:00
15 lines
297 B
Python
15 lines
297 B
Python
from unittest import TestCase
|
|
|
|
import sys
|
|
sys.path.append("./AerialNavigation/rocket_powered_landing/")
|
|
|
|
from AerialNavigation.rocket_powered_landing import rocket_powered_landing as m
|
|
print(__file__)
|
|
|
|
|
|
class Test(TestCase):
|
|
|
|
def test1(self):
|
|
m.show_animation = False
|
|
m.main()
|