我可以在 python 中对内部函数进行单元测试吗?
有没有办法为innerfunc
编写unittests
或doctests
?
def outerfunc():
def innerfunc():
do_something()
return innerfunc()
Is there any way to write unittests
or doctests
for innerfunc
?
def outerfunc():
def innerfunc():
do_something()
return innerfunc()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅当您提供一种提取内部函数对象本身的方法时,例如,
如果您的外部函数坚持将内部函数完全隐藏在其自身内部(当正确诱使这样做时,绝不让它渗透到外部),您的单元测试将无法击败这种对极端和完全隐私的强烈追求;-)。
Only if you provide a way to extract the inner function object itself, e.g.
If your outer function insists on hiding the inner one entirely inside itself (never letting it percolate outside when properly cajoled to do so), your unit-tests are powerless to defeat this strong bid for extreme and total privacy;-).
这实际上是一个古老的开放式 Python 问题:
有一个候选补丁(从 2007 年开始)这使得 doctest 可以找到嵌套函数,但可能需要有人推动它。
This is actually an old open Python issue:
There's a candidate patch (from 2007) that makes doctest find nested functions, but someone probably needs to push this.