Rob Elliot
10/24/2025, 10:18 AMsatisfy matcher should already be in the assertions library, or else there's a better pattern to be used...Rob Elliot
10/24/2025, 10:25 AMMatcher<T> - going with this I think:Alex Kuznetsov
10/24/2025, 6:01 PMfail or `failSoftly`:
if(yourCondition) {
failSoftly("your message")
}