Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FR]: EXPECT_NONFATAL_FAILURE and friends: Support multiple (variadic) substrings #4732

Open
MikeWeller opened this issue Mar 12, 2025 · 0 comments

Comments

@MikeWeller
Copy link

MikeWeller commented Mar 12, 2025

I would like to be able to pass multiple substrings to EXPECT_NONFATAL_FAILURE so that all the substrings must appear in the failure output.

This should I guess also apply to the other EXPECT_(FATAL|NONFATAL)_FAILURE[_ON_ALL_THREADS].

Does the feature exist in the most recent commit?

No

Why do we need this feature?

When testing matchers that produce detailed output (e.g. multi-line, or printing details from inner/nested matchers), it's brittle and cumbersome to test either one big string (where the test now depends on unimportant indentation/formatting), or have to repeat the entire EXPECT_NONFATAL_FAILURE multiple times to verify multiple substrings.

Describe the proposal.

For my use case, I want to be able to do something like:

        EXPECT_NONFATAL_FAILURE(
               [&] {
                   EXPECT_THAT(myObject, MyMatcher(...));
               }(),
               "Substring 1",
               "Substring 2");

I haven't looked at whether this can be done in a backward compatible way using __VA_ARGS__/__VA_OPT__/etc.

Is the feature specific to an operating system, compiler, or build system version?

No.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant