aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtCore/static_protected_methods_test.py
blob: 9d920a438e9b37ba62aff31a479710fad72043f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/python
'''Unit tests for static protected methods'''

import unittest, time

from PySide.QtCore import QThread

class Test (QThread):
    def run(self):
        start = time.time()
        self.sleep(1)
        self.time_elapsed = time.time() - start

class QStaticProtectedCall(unittest.TestCase):
    '''Test case for static protected method call'''

    def setUp(self):
        pass

    def tearDown(self):
        pass

    def testPathSeparator(self):
        thread = Test()
        thread.start()
        thread.wait()
        self.assertTrue(thread.time_elapsed <= 1.1) # tolarance of 100ms

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