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
23
tests/QtNetwork/accessManager_test.py
Normal file
23
tests/QtNetwork/accessManager_test.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
'''Test cases for QHttp'''
|
||||
|
||||
import unittest
|
||||
|
||||
from PySide.QtCore import *
|
||||
from PySide.QtNetwork import *
|
||||
|
||||
from helper import UsesQApplication
|
||||
|
||||
class AccessManagerCase(UsesQApplication):
|
||||
def slot_replyFinished(self, reply):
|
||||
self.assertEqual(type(reply), QNetworkReply)
|
||||
self.app.quit()
|
||||
|
||||
def testNetworkRequest(self):
|
||||
manager = QNetworkAccessManager()
|
||||
manager.finished.connect(self.slot_replyFinished)
|
||||
manager.get(QNetworkRequest(QUrl("http://qt.nokia.com")))
|
||||
self.app.exec_()
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue