9 lines
170 B
Python
9 lines
170 B
Python
from unittest import TextTestRunner, TestSuite
|
|
|
|
import test.python.math.t_amount as t_amount
|
|
|
|
suites = [
|
|
t_amount.suite(),
|
|
]
|
|
|
|
TextTestRunner().run(TestSuite(suites))
|