gpt4 book ai didi

python - 如何查看 Hypothesis Python 库的 "Bundle"输出? (状态测试)

转载 作者:行者123 更新时间:2023-11-28 21:36:46 25 4
gpt4 key购买 nike

当使用假设库并执行状态测试时,如何查看或输出库正在尝试我的代码的 Bundle“服务”?

例子

import hypothesis.strategies as st
from hypothesis.strategies import integers
from hypothesis.stateful import Bundle, RuleBasedStateMachine, rule, precondition

class test_servicediscovery(RuleBasedStateMachine):
services = Bundle('services')
@rule(target=services, s=st.integers(min_value=0, max_value=2))
def add_service(self, s):
return s

问题是:如何打印/查看由库生成的 Bundle“services”变量?

最佳答案

在您提供的示例中,服务在您的代码上进行尝试 - 您正在向其中添加内容,但从未将它们用作另一个规则的输入。

如果是,在详细模式下运行 Hypothesis 将在所有输入发生时显示它们;甚至在正常模式下失败的示例将打印所有使用的值。

关于python - 如何查看 Hypothesis Python 库的 "Bundle"输出? (状态测试),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57956401/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com