PySide/tests/QtGui/bug_743.py
Renato Filho 46fc033929 Created unit test for bug #743.
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
          Hugo Parente Lima <hugo.pl@gmail.com>
2011-04-14 18:51:51 -03:00

15 lines
370 B
Python

import unittest
from PySide.QtGui import QMatrix4x4
class TestQMatrix(unittest.TestCase):
def testOperator(self):
m = QMatrix4x4(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16)
v = 1
for x in range(4):
for y in range(4):
self.assertEqual(m[x,y], v)
v += 1
if __name__ == '__main__':
unittest.main()