Johan Dahlin a2040bb005 testsuite/runtests.py (tests): Run all tests in one TestSuite instead of several.
Original commit message from CVS:
* testsuite/runtests.py (tests): Run all tests in one TestSuite
instead of several.

* testsuite/element.py (FakeSinkTest.setUp): Disable StateError
tests until there is a way to disable element error output.
2004-04-21 09:45:44 +00:00

13 lines
314 B
Python

#!/usr/bin/env python
import sys
from unittest import TestSuite, TestLoader, TextTestRunner
from types import ClassType
loader = TestLoader()
testRunner = TextTestRunner()
test = TestSuite()
for name in ('element', 'interface', 'pipeline'):
test.addTest(loader.loadTestsFromName(name))
testRunner.run(tests)