A matcher that verifies an Option is Some.
expect(Some(42), isSome); expect(None(), isNot(isSome));
const Matcher isSome = _IsSome();