isSuccess top-level constant

Matcher const isSuccess

A matcher that verifies a Result is Success.

expect(Success(42), isSuccess);
expect(Failure('error'), isNot(isSuccess));

Implementation

const Matcher isSuccess = _IsSuccess();