We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4819da commit ebdd647Copy full SHA for ebdd647
src/test/java/org/springframework/data/map/MapKeyValueAdapterUnitTests.java
@@ -18,14 +18,18 @@
18
import static org.assertj.core.api.Assertions.*;
19
20
import java.util.AbstractMap;
21
+import java.util.LinkedHashMap;
22
import java.util.Map;
23
24
import org.junit.jupiter.api.BeforeEach;
25
import org.junit.jupiter.api.Test;
26
import org.springframework.data.util.CloseableIterator;
27
28
/**
29
+ * Unit tests for {@link MapKeyValueAdapter}.
30
+ *
31
* @author Christoph Strobl
32
+ * @author Mark Paluch
33
*/
34
class MapKeyValueAdapterUnitTests {
35
@@ -40,7 +44,7 @@ class MapKeyValueAdapterUnitTests {
40
44
41
45
@BeforeEach
42
46
void setUp() {
43
- this.adapter = new MapKeyValueAdapter();
47
+ this.adapter = new MapKeyValueAdapter(LinkedHashMap.class);
48
}
49
50
@Test // DATACMNS-525
0 commit comments