aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/objecttypebyvalue_test.py
blob: a9c6bb302c5deea27fb7522b49ae0b9a0f0f43a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from sample import *
import unittest

class ObjectTypeByValueTest (unittest.TestCase):
    def testIt(self):
        factory = ObjectTypeByValue()
        obj = factory.returnSomeKindOfMe()
        # This should crash!
        obj.prop.protectedValueTypeProperty.setX(1.0)
        # just to make sure it will segfault
        obj.prop.protectedValueTypeProperty.setY(2.0)

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