summaryrefslogtreecommitdiff
path: root/test/python/UnitTests.py
blob: 843e9fc1590122bb5995d0d2c5ae88fa6456d2ad (plain)
1
2
3
4
5
6
7
8
9
from unittest import TextTestRunner, TestSuite

import tests.python.numerics.t_amount as t_amount

suites = [
    t_amount.suite(),
]

TextTestRunner().run(TestSuite(suites))