仮説ライブラリを使用してステートフル テストを実行する場合、ライブラリがコードで試行しているバンドル「サービス」を確認または出力するにはどうすればよいですか?
例
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" 変数をどのように表示/表示するかです。