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

Implement a matcher for parallel runs in iterables #383

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Caster
Copy link

@Caster Caster commented Mar 17, 2022

Introduce a new matcher containsParallelRunsOf and express the existing containsInRelativeOrder matcher using the new matcher with a single run as argument.

Use case

In a project I am working on, we have a piece of code that logs a couple of messages and is being called multiple times in parallel. In the unit test of that code, we want to verify that the logs are correct. This is not straightforward, because the logs can be mixed up because of the parallel calls. Still, we want to check that (1) all logs are there and (2) their relative order is correct.

This is essentially a slightly more general version of the existing containsInRelativeOrder matcher, which is why I was able to express that matcher using the new one in this MR.

Introduce a new matcher `containsParallelRunsOf` and express the
existing `containsInRelativeOrder` matcher using the new matcher with a
single run as argument.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant