aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/float_to_int_implicit_conversion_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/float_to_int_implicit_conversion_test.py')
-rw-r--r--tests/QtGui/float_to_int_implicit_conversion_test.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/QtGui/float_to_int_implicit_conversion_test.py b/tests/QtGui/float_to_int_implicit_conversion_test.py
new file mode 100644
index 000000000..cc7d18fd9
--- /dev/null
+++ b/tests/QtGui/float_to_int_implicit_conversion_test.py
@@ -0,0 +1,32 @@
+
+'''Test cases for QImage'''
+
+import unittest
+
+from PySide.QtGui import QImage, qRgb
+
+from helper import UsesQApplication
+
+class SetPixelFloat(UsesQApplication):
+ '''Test case for calling setPixel with float as argument'''
+
+ def setUp(self):
+ #Acquire resources
+ super(SetPixelFloat, self).setUp()
+ self.color = qRgb(255, 0, 0)
+ self.image = QImage(200, 200, QImage.Format_RGB32)
+
+ def tearDown(self):
+ #Release resources
+ del self.color
+ del self.image
+ super(SetPixelFloat, self).tearDown()
+
+ def testFloat(self):
+ #QImage.setPixel(float, float, color) - Implicit conversion
+ self.image.setPixel(3.14, 4.2, self.color)
+ self.assertEqual(self.image.pixel(3.14, 4.2), self.color)
+
+
+if __name__ == '__main__':
+ unittest.main()