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