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

import test.python.math.t_amount as t_amount

suites = [
    t_amount.suite(),
]

TextTestRunner().run(TestSuite(suites))