Description
I use fluentassertions in UI tests, works great.
Do you provide any approach for adding callbacks in case FluentAssertions' extensions are triggerd?
For example, when I use the following snippet:
[..snip..]
var guid = GetGuidOf(srvExt0);
var resWait = WaitFor((out bool b) => b = refMgr.IsReferenceAdded(guid));
resWait.Should().BeTrue();
[..snip..]
In case resWait is false I like to create a screenshot of the UI.
Can I register callbacks for this case somehow?
Globally would be great to keep the tests clean and simple.