From 241d12c2f2bc9971a1c6b231f6539964c19e6eb9 Mon Sep 17 00:00:00 2001 From: only-changer Date: Tue, 22 Oct 2019 16:49:32 -0400 Subject: [PATCH] Add osm2cityflow test --- tests/python/test_osm_converter.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/python/test_osm_converter.py diff --git a/tests/python/test_osm_converter.py b/tests/python/test_osm_converter.py new file mode 100644 index 0000000..391d38f --- /dev/null +++ b/tests/python/test_osm_converter.py @@ -0,0 +1,11 @@ +import unittest +from tools.converter.osm2cityflow import extract, draw + + +class TestOsmConverter(unittest.TestCase): + def test_converter(self): + pass + + +if __name__ == '__main__': + unittest.main(verbosity=2)