Created new unittest model.
Separete unittest for module.
Only run unittest for compiled modules.
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>,
Luciano Wolf <luciano.wolf@openbossa.org>
This commit is contained in:
parent
471486732b
commit
ab918abc1e
211 changed files with 241 additions and 79 deletions
47
tests/QtCore/qslot_object_test.py
Normal file
47
tests/QtCore/qslot_object_test.py
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
#!/usr/bin/python
|
||||
import unittest
|
||||
from PySide import QtCore
|
||||
|
||||
global qApp
|
||||
|
||||
class objTest(QtCore.QObject):
|
||||
|
||||
def __init__(self, parent=None):
|
||||
QtCore.QObject.__init__(self, parent)
|
||||
|
||||
self.ok = False
|
||||
|
||||
def slot(self):
|
||||
global qApp
|
||||
|
||||
self.ok = True
|
||||
qApp.quit()
|
||||
|
||||
|
||||
|
||||
class slotTest(unittest.TestCase):
|
||||
def quit_app(self):
|
||||
global qApp
|
||||
|
||||
qApp.quit()
|
||||
|
||||
def testBasic(self):
|
||||
global qApp
|
||||
timer = QtCore.QTimer()
|
||||
timer.setInterval(100)
|
||||
|
||||
my_obj = objTest()
|
||||
my_slot = QtCore.SLOT("slot()")
|
||||
QtCore.QObject.connect(timer, QtCore.SIGNAL("timeout()"), my_obj, my_slot)
|
||||
timer.start(100)
|
||||
|
||||
QtCore.QTimer.singleShot(1000, self.quit_app)
|
||||
qApp.exec_()
|
||||
|
||||
self.assert_(my_obj.ok)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
global qApp
|
||||
qApp = QtCore.QCoreApplication([])
|
||||
unittest.main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue