def __init__(self, n='runTest'): super().__init__(n) self.read_base = 'test1' self.write_base = 'test2_keycounter' if KeyCounterTest.__do_log_init: import testapp app = testapp.TestApp('testkeycounter') KeyCounterTest.__do_log_init = False
import VectorTest import WordsTest import AVTest import DynamicsTest import PythonTest import AnimTest import EventTest import InputDeviceTest import AVGAppTest import WidgetTest import GestureTest import LoggerTest import AppTest import MultiWindowTest app = testapp.TestApp() app.registerSuiteFactory('player', PlayerTest.playerTestSuite) app.registerSuiteFactory('image', ImageTest.imageTestSuite) app.registerSuiteFactory('vector', VectorTest.vectorTestSuite) app.registerSuiteFactory('words', WordsTest.wordsTestSuite) app.registerSuiteFactory('dynamics', DynamicsTest.dynamicsTestSuite) app.registerSuiteFactory('event', EventTest.eventTestSuite) app.registerSuiteFactory('av', AVTest.AVTestSuite) app.registerSuiteFactory('offscreen', OffscreenTest.offscreenTestSuite) app.registerSuiteFactory('fx', FXTest.fxTestSuite) app.registerSuiteFactory('python', PythonTest.pythonTestSuite) app.registerSuiteFactory('anim', AnimTest.animTestSuite) app.registerSuiteFactory('inputdevice', InputDeviceTest.inputDeviceTestSuite) app.registerSuiteFactory('widget', WidgetTest.widgetTestSuite) app.registerSuiteFactory('gesture', GestureTest.gestureTestSuite)