From fc6b8837ecdf1891fcd52e0ff60c2b9275acd28e Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 15 Apr 2007 11:20:24 +0000 Subject: Added python tests. --- tests/python/UnitTests.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/python/UnitTests.py (limited to 'tests/python/UnitTests.py') diff --git a/tests/python/UnitTests.py b/tests/python/UnitTests.py new file mode 100644 index 00000000..981d2827 --- /dev/null +++ b/tests/python/UnitTests.py @@ -0,0 +1,9 @@ +from unittest import TextTestRunner, TestSuite + +import tests.python.corelib.numerics.BasicAmount as BasicAmount + +suites = [ + BasicAmount.suite(), +] + +TextTestRunner().run(TestSuite(suites)) -- cgit v1.2.3