File: objecttypebyvalue_test.py

package info (click to toggle)
shiboken 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,012 kB
  • sloc: cpp: 50,315; python: 5,747; xml: 2,268; makefile: 137; ansic: 132
file content (14 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (4)
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()