From e96cb16b14f7a5e3f122befa9abd697c497407ad Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Thu, 10 Feb 2011 13:05:24 -0300 Subject: Added QCursor test. It is related to bug #630. Bug #630 - Fails to resolve overload for QCursor(QBitmap, QBitmap, int, int) http://bugs.openbossa.org/show_bug.cgi?id=630 Reviewed by Hugo Parente Reviewed by Luciano Wolf --- tests/QtGui/CMakeLists.txt | 1 + tests/QtGui/qcursor_test.py | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 tests/QtGui/qcursor_test.py diff --git a/tests/QtGui/CMakeLists.txt b/tests/QtGui/CMakeLists.txt index c7505c272..d22c67eaf 100644 --- a/tests/QtGui/CMakeLists.txt +++ b/tests/QtGui/CMakeLists.txt @@ -56,6 +56,7 @@ PYSIDE_TEST(qapplication_singleton_test.py) PYSIDE_TEST(qapp_test.py) PYSIDE_TEST(qbrush_test.py) PYSIDE_TEST(qcolor_test.py) +PYSIDE_TEST(qcursor_test.py) PYSIDE_TEST(qaction_test.py) PYSIDE_TEST(qdatastream_gui_operators_test.py) PYSIDE_TEST(qdynamic_signal.py) diff --git a/tests/QtGui/qcursor_test.py b/tests/QtGui/qcursor_test.py new file mode 100644 index 000000000..ec758d4f1 --- /dev/null +++ b/tests/QtGui/qcursor_test.py @@ -0,0 +1,16 @@ +'''Test for Bug 630 - Fails to resolve overload for QCursor(QBitmap, QBitmap, int, int) +http://bugs.openbossa.org/show_bug.cgi?id=630 +''' + +import unittest +from PySide.QtGui import QBitmap, QCursor, QPixmap +from helper import UsesQApplication + +class TestQCursor(UsesQApplication): + def testQCursorConstructor(self): + bmp = QBitmap(16, 16) + cursor = QCursor(bmp, bmp, 16, 16) + +if __name__ == '__main__': + unittest.main() + -- cgit v1.2.3