aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/qimage_test.py
blob: d8aa545af04c2b5b5dd491f26e030c5070fa01b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

'''Test cases for QImage'''

import unittest

from PySide.QtGui import QImage

from helper import UsesQApplication

class QImageTest(UsesQApplication):
    '''Test case for calling setPixel with float as argument'''

    def testQImageStringBuffer(self):
        '''Test if the QImage signatures receiving string buffers exist.'''
        img0 = QImage('', 100, 100, QImage.Format_ARGB32)
        img1 = QImage('', 100, 100, 0, QImage.Format_ARGB32)

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