This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git
The following commit(s) were added to refs/heads/master by this push:
new 5e8368dbd Close HTML tags
5e8368dbd is described below
commit 5e8368dbd53debdf373b46c46ab3998b5e491a73
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Mar 30 13:35:16 2024 -0400
Close HTML tags
---
.../commons/collections4/multimap/AbstractMultiValuedMapTest.java | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git
a/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java
b/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java
index 8dce43b58..7bb8dfb50 100644
---
a/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java
+++
b/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java
@@ -534,6 +534,10 @@ public abstract class AbstractMultiValuedMapTest<K, V>
extends AbstractObjectTes
return 6;
}
+ public int getSampleValuesPerKey() {
+ return 2;
+ }
+
/**
* Returns the set of values in the mappings used to test the map. This
* method must return an array with the same length as
@@ -559,6 +563,7 @@ public abstract class AbstractMultiValuedMapTest<K, V>
extends AbstractObjectTes
* <p>
* Default implementation returns true. Override if your collection class
* does not support put adding.
+ * </p>
*/
public boolean isAddSupported() {
return true;
@@ -570,6 +575,7 @@ public abstract class AbstractMultiValuedMapTest<K, V>
extends AbstractObjectTes
* <p>
* Default implementation returns true. Override if your collection class
* does not support null keys.
+ * </p>
*/
public boolean isAllowNullKey() {
return true;
@@ -581,6 +587,7 @@ public abstract class AbstractMultiValuedMapTest<K, V>
extends AbstractObjectTes
* <p>
* Default implementation returns false. Override if your collection class
* supports set value.
+ * </p>
*/
public boolean isHashSetValue() {
return false;
@@ -593,6 +600,7 @@ public abstract class AbstractMultiValuedMapTest<K, V>
extends AbstractObjectTes
* <p>
* Default implementation returns true. Override if your collection class
* does not support removal operations.
+ * </p>
*/
public boolean isRemoveSupported() {
return true;