aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/timed_app_test.py
blob: 4af9a0130187955465c1f869214e75fd22bdf838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

import unittest

from helper import TimedQApplication 

class TestTimedApp(TimedQApplication):
    '''Simple test case for TimedQApplication'''

    def testFoo(self):
        #Simple test of TimedQApplication
        self.app.exec_()

if __name__ == '__main__':
    unittest.main()