We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Greetings,
Would it be possible to have a matcher that doesn't consume data from the internal buffer when it matches?
Example:
data on expect inputstream: "abcd" expect.expect(Matchers.nonConsuming("ab"); expect.expect(Matchers.contains("abcd");
The point is that both matchers should match. Meaning that the 1st non-consuming matcher should match, but not consume data from the internal buffer.
Thanks!
The text was updated successfully, but these errors were encountered:
Question: a non-consuming Matcher #52
181de05
No branches or pull requests
Greetings,
Would it be possible to have a matcher that doesn't consume data from the internal buffer when it matches?
Example:
The point is that both matchers should match.
Meaning that the 1st non-consuming matcher should match, but not consume data from the internal buffer.
Thanks!
The text was updated successfully, but these errors were encountered: