本文整理匯總了Python中pymock.Controller.setException方法的典型用法代碼示例。如果您正苦於以下問題:Python Controller.setException方法的具體用法?Python Controller.setException怎麽用?Python Controller.setException使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pymock.Controller
的用法示例。
在下文中一共展示了Controller.setException方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: testExceptionRaisedByFunctions
# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import setException [as 別名]
def testExceptionRaisedByFunctions(self):
"""Ensure that function calls play back exceptions"""
c = Controller()
x = c.mock(KlassBeingMocked)
x.g.h(3, 4)
c.setException(Exception)
c.replay()
self.failUnlessRaises(Exception, x.g.h, 3, 4)
示例2: testIterDoesNotAllowRecordingAfterAnException
# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import setException [as 別名]
def testIterDoesNotAllowRecordingAfterAnException(self):
"""Ensure that __iter__ records and replays exceptions"""
c = Controller()
x = c.mock()
x.__iter__()
c.setReturn(1)
c.setException(Exception)
self.failUnlessRaises(Exception, c.setReturn, 2)
self.failUnlessRaises(Exception, c.setException, Exception)
示例3: testIterWithException
# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import setException [as 別名]
def testIterWithException(self):
"""Ensure that __iter__ records and replays exceptions"""
c = Controller()
x = c.mock()
x.__iter__()
c.setReturn(1)
c.setException(Exception)
c.replay()
i = x.__iter__()
self.failUnless(i.next() == 1)
self.failUnlessRaises(Exception, i.next)
示例4: testExplicitGeneratorExecptionUsage
# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import setException [as 別名]
def testExplicitGeneratorExecptionUsage(self):
"""Check exception raising with explicit generators using discrete settings"""
c = Controller()
x = c.mock()
x.g(8, 9)
c.generator()
c.setReturn(10)
c.setException(Exception("bogus"))
c.replay()
g = x.g(8, 9)
self.failUnless(g.next() == 10)
self.failUnlessRaises(Exception, g.next)
示例5: testExceptionRaisedBySetattr
# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import setException [as 別名]
def testExceptionRaisedBySetattr(self):
"""Ensure that setattr returns function calls"""
c = Controller()
x = c.mock(KlassBeingMocked)
x.g = 6
c.setException(Exception)
c.replay()
try:
x.g = 6
self.fail()
except Exception, e:
pass
示例6: testExceptionRaisedByGetattr
# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import setException [as 別名]
def testExceptionRaisedByGetattr(self):
"""Ensure that getattr plays back exceptions"""
c = Controller()
x = c.mock(KlassBeingMocked)
x.g
c.setException(Exception)
c.replay()
try:
x.g
self.fail()
except Exception, e:
pass