Files
PythonRobotics/tests/test_rocket_powered_landing.py
Atsushi Sakai a01dc16793 add test
2019-01-07 11:30:52 +09:00

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()