From cb2a91a29ebb6609f8db0ebed40922fd1e3e9ebd Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Tue, 1 Oct 2024 17:22:24 -0400 Subject: [PATCH] Javadoc --- .../collections4/map/AbstractMapTest.java | 28 +++++++++++++------ 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/src/test/java/org/apache/commons/collections4/map/AbstractMapTest.java b/src/test/java/org/apache/commons/collections4/map/AbstractMapTest.java index 53682fe3e..b2832a87c 100644 --- a/src/test/java/org/apache/commons/collections4/map/AbstractMapTest.java +++ b/src/test/java/org/apache/commons/collections4/map/AbstractMapTest.java @@ -57,12 +57,16 @@ import org.junit.jupiter.api.Test; *

* The forces at work here are similar to those in {@link AbstractCollectionTest}. If your class implements the full Map interface, including optional * operations, simply extend this class, and implement the {@link #makeObject()} method. + *

*

* On the other hand, if your map implementation is weird, you may have to override one or more of the other protected methods. They're described below. + *

*

* Entry Population Methods + *

*

* Override these methods if your map requires special entries: + *

* *