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

More fluent usage of PredicateBuilder in assertions #360

Merged

Conversation

topbadger
Copy link

Added static helper method and method overloads to make assertions using the PredicateBuilder more fluent.

This allows assertions to be declared as follows:

assertThat(logger).hasLogged(aLog().withLevel(Level.WARN).withMessage("Something"));

as opposed to:

assertThat(logger).hasLogged(new PredicateBuilder().withLevel(Level.WARN).withMessage("Something").build());

@codeclimate
Copy link

codeclimate bot commented Mar 13, 2023

Code Climate has analyzed commit affee72 and detected 0 issues on this pull request.

View more on Code Climate.

@valfirst valfirst merged commit 5bc793e into valfirst:master Mar 14, 2023
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.

2 participants