Files
PythonRobotics/tests/test_rocket_powered_landing.py
Atsushi Sakai c80583b2f8 update test
2019-03-16 21:09:55 +09:00

16 lines
372 B
Python

from unittest import TestCase
import sys
if 'cvxpy' in sys.modules: # pragma: no cover
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()