aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/pysidetest/shared_pointer_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/pysidetest/shared_pointer_test.py')
-rw-r--r--sources/pyside6/tests/pysidetest/shared_pointer_test.py24
1 files changed, 23 insertions, 1 deletions
diff --git a/sources/pyside6/tests/pysidetest/shared_pointer_test.py b/sources/pyside6/tests/pysidetest/shared_pointer_test.py
index e5baa551c..bef5b6485 100644
--- a/sources/pyside6/tests/pysidetest/shared_pointer_test.py
+++ b/sources/pyside6/tests/pysidetest/shared_pointer_test.py
@@ -36,7 +36,15 @@ sys.path.append(os.fspath(Path(__file__).resolve().parents[1]))
from init_paths import init_test_paths
init_test_paths(True)
-from testbinding import SharedPointerTestbench
+from PySide6.QtCore import QObject
+
+from testbinding import SharedPointerTestbench, QSharedPointer_QObject
+
+
+def create_qobject(name):
+ result = QObject()
+ result.setObjectName(name)
+ return result
class SharedPointerTests(unittest.TestCase):
@@ -50,6 +58,20 @@ class SharedPointerTests(unittest.TestCase):
p = SharedPointerTestbench.createSharedPointerInt(42)
SharedPointerTestbench.printSharedPointerInt(p)
+ def testConstruction(self):
+ name1 = "CreatedQObject1"
+ p1 = QSharedPointer_QObject(create_qobject(name1))
+ self.assertTrue(p1)
+ self.assertEqual(p1.objectName(), name1)
+
+ p1.reset()
+ self.assertFalse(p1)
+
+ name2 = "CreatedQObject2"
+ p1.reset(create_qobject(name2))
+ self.assertTrue(p1)
+ self.assertEqual(p1.objectName(), name2)
+
if __name__ == '__main__':
unittest.main()