diff options
Diffstat (limited to 'tests/python/UnitTests.py')
-rw-r--r-- | tests/python/UnitTests.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/python/UnitTests.py b/tests/python/UnitTests.py new file mode 100644 index 00000000..981d2827 --- /dev/null +++ b/tests/python/UnitTests.py @@ -0,0 +1,9 @@ +from unittest import TextTestRunner, TestSuite + +import tests.python.corelib.numerics.BasicAmount as BasicAmount + +suites = [ + BasicAmount.suite(), +] + +TextTestRunner().run(TestSuite(suites)) |