summaryrefslogtreecommitdiff
path: root/python/test/UnitTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/UnitTests.py')
-rw-r--r--python/test/UnitTests.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/test/UnitTests.py b/python/test/UnitTests.py
new file mode 100644
index 00000000..843e9fc1
--- /dev/null
+++ b/python/test/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))