From 289cc97d45bbd3a8cdfcc3371ade71715b75b000 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 12 Apr 2008 01:37:50 -0400 Subject: Exchanged old test files for the new testing code in was-v3.0. --- test/python/UnitTests.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/python/UnitTests.py (limited to 'test/python/UnitTests.py') diff --git a/test/python/UnitTests.py b/test/python/UnitTests.py new file mode 100644 index 00000000..843e9fc1 --- /dev/null +++ b/test/python/UnitTests.py @@ -0,0 +1,9 @@ +from unittest import TextTestRunner, TestSuite + +import tests.python.numerics.t_amount as t_amount + +suites = [ + t_amount.suite(), +] + +TextTestRunner().run(TestSuite(suites)) -- cgit v1.2.3