Skip to content

Commit

Permalink
Add missing Guava assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
mk868 committed Dec 22, 2024
1 parent b1d80bf commit 2daa537
Showing 1 changed file with 9 additions and 0 deletions.
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

0 comments on commit 2daa537

Please sign in to comment.