我可以在 python 中对内部函数进行单元测试吗?

发布于 2024-08-19 04:13:48 字数 192 浏览 8 评论 0原文

有没有办法为innerfunc编写unittestsdoctests

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

脸赞 2024-08-26 04:13:48

仅当您提供一种提取内部函数对象本身的方法时,例如,

def outerfunc(calltheinner=True):
    def innerfunc():
        do_something()
    if calltheinner:
        return innerfunc()
    else:
        return innerfunc

如果您的外部函数坚持将内部函数完全隐藏在其自身内部(当正确诱使这样做时,绝不让它渗透到外部),您的单元测试将无法击败这种对极端和完全隐私的强烈追求;-)。

Only if you provide a way to extract the inner function object itself, e.g.

def outerfunc(calltheinner=True):
    def innerfunc():
        do_something()
    if calltheinner:
        return innerfunc()
    else:
        return innerfunc

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;-).

债姬 2024-08-26 04:13:48

这实际上是一个古老的开放式 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文