ExpectNot.toSatisfyAll

Succeeds if predicate(received) returns false for at least one of the given predicates. Throws a FailingExpectationError otherwise.

All predicates are evaluated.

Fails if something is thrown while evaluating any of the predicates, even if another predicate returns false.

struct ExpectNot(TReceived)
void
toSatisfyAll
(
bool delegate
(
const(TReceived)
)
[]
predicates...
)

Meta