From:
var hypothesis = Hypothesis
.For<Data>()
.Any(x => x.Value == 1234);
await hypothesis.Validate(15.Seconds());
To:
var observer = new Observer<Data>();
await Hypothesis
.On(observer)
.Within(15.Seconds());
.Any()
.Match(x => x.Value == 1234)
.Validate();