本文整理匯總了Python中pymock.Controller.overrideProperty方法的典型用法代碼示例。如果您正苦於以下問題:Python Controller.overrideProperty方法的具體用法?Python Controller.overrideProperty怎麽用?Python Controller.overrideProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pymock.Controller
的用法示例。
在下文中一共展示了Controller.overrideProperty方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: testOverridenPropertiesCheckOrdering
# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import overrideProperty [as 別名]
def testOverridenPropertiesCheckOrdering(self):
"""Verify overriding fields detects ordering issues"""
c = Controller()
x = KlassBeingMocked()
x.f = 38
c.overrideProperty(x, 'f')
m = x.f
c.setReturn(5)
x.f = 74
c.replay()
self.failUnlessRaises(Exception, c.verify)
try:
x.f = 74
self.fail()
except PlaybackFailure, e:
pass
示例2: testOverrideFieldWithSetAndGetAndDel
# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import overrideProperty [as 別名]
def testOverrideFieldWithSetAndGetAndDel(self):
"""Verify overriding fields and performing operations on them"""
c = Controller()
x = KlassBeingMocked()
x.f = 38
c.overrideProperty(x, 'f')
m = x.f
c.setReturn(5)
x.f = 74
del x.f
c.replay()
self.failUnlessRaises(Exception, c.verify)
self.failUnless(x.f == 5)
x.f = 74
del x.f
c.verify()
c.restore()
self.failUnless(x.f == 38)