summaryrefslogtreecommitdiff
path: root/tests/python/UnitTests.py
blob: 84b8432b1ad920b6f4b6b94c0d13e98d0cb963c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
from unittest import TextTestRunner, TestSuite

import tests.python.numerics.BasicAmount as BasicAmount
import tests.python.numerics.CommodityAmount as CommodityAmount

suites = [
    BasicAmount.suite(),
    CommodityAmount.suite(),
]

TextTestRunner().run(TestSuite(suites))