Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python assertRaises with class property

from unittest import TestCase

class MyTest(TestCase):
    def test_property(self):
        # Test that Type Error is correctly raised
        obj = MyClass("foobar")
        self.assertRaises(TypeError, lambda: x.my_property, obj)
 
PREVIOUS NEXT
Tagged: #python #assertRaises #class #property
ADD COMMENT
Topic
Name
4+5 =