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

Add missing Guava assertions #169

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ This section describes the assertions provided by AssertJ Guava.
|{assertj-guava-javadoc-root}org/assertj/guava/api/MultimapAssert.html#containsValues(V...)[`containsValues`]
|Verifies that the actual `Multimap` contains the given values for any key.

|{assertj-guava-javadoc-root}org/assertj/guava/api/MultimapAssert.html#doesNotContainKey(K)[`doesNotContainKey`]
|Verifies that the actual `Multimap` does not contain the given key.

|{assertj-guava-javadoc-root}org/assertj/guava/api/MultimapAssert.html#doesNotContainKeys(K...)[`doesNotContainKeys`]
|Verifies that the actual `Multimap` does not contain the given keys.

|{assertj-guava-javadoc-root}org/assertj/guava/api/MultimapAssert.html#hasSameEntriesAs(com.google.common.collect.Multimap)[`hasSameEntriesAs`]
|Verifies that the actual `Multimap` has the same entries as the given one.

Expand Down Expand Up @@ -269,6 +275,9 @@ In addition to `Iterable` {assertj-core-javadoc-root}org/assertj/core/api/Abstra

|{assertj-guava-javadoc-root}org/assertj/guava/api/TableAssert.html#isEmpty()[`isEmpty`]
|Verifies that the actual `Table` is empty.

|{assertj-guava-javadoc-root}org/assertj/guava/api/TableAssert.html#isNotEmpty()[`isNotEmpty`]
|Verifies that the actual `Table` is not empty.
|===

[[assertj-guava-javadoc]]
Expand Down
Loading