Files
PythonRobotics/tests/test_rectangle_fitting.py
Atsushi Sakai 2d5024dc38 add test_rectangle_fitting.py (#444)
* add test_rectangle_fitting.py

* add test_rectangle_fitting.py
2020-12-20 16:16:35 +09:00

23 lines
379 B
Python

from unittest import TestCase
import sys
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__)) +
"/../Mapping/rectangle_fitting/")
try:
from Mapping.rectangle_fitting import rectangle_fitting as m
except ImportError:
raise
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()