重现:
In [1]: from hypothesis import strategies as st
In [2]: bool_st = st.booleans()
In [3]: all(bool_st.example() for _ in range(1000))
Out[3]: True
为什么st.booleans().example()
总是返回True
?我的理解是,该example
方法应该返回策略可以输出的示例,并且在某种程度上随机输出。
相关地,st.sampled_from(...)
似乎永远不会返回迭代中的第一项:
In [1]: from hypothesis import strategies as st
In [2]: from collections import Counter
In [3]: samp_st = st.sampled_from(list(range(10)))
In [4]: examples = [samp_st.example() for _ in range(1000)]
In [5]: cnt = Counter(examples)
In [6]: cnt.most_common()
Out[6]: [(1, 512), (2, 282), (3, 119), (4, 55), (5, 22), (6, 5), (7, 4), (8, 1)]
那么这里发生了什么?
我知道example
方法文档说该方法“不应该太认真”(见这里)。但这提供的解释很少,如果能更深入地了解为什么会发生这种情况会很好。