@@ -18,6 +18,7 @@ package org.springframework.data.map;
|
|||||||
import static org.assertj.core.api.Assertions.*;
|
import static org.assertj.core.api.Assertions.*;
|
||||||
|
|
||||||
import java.util.AbstractMap;
|
import java.util.AbstractMap;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
@@ -25,7 +26,10 @@ import org.junit.jupiter.api.Test;
|
|||||||
import org.springframework.data.util.CloseableIterator;
|
import org.springframework.data.util.CloseableIterator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Unit tests for {@link MapKeyValueAdapter}.
|
||||||
|
*
|
||||||
* @author Christoph Strobl
|
* @author Christoph Strobl
|
||||||
|
* @author Mark Paluch
|
||||||
*/
|
*/
|
||||||
class MapKeyValueAdapterUnitTests {
|
class MapKeyValueAdapterUnitTests {
|
||||||
|
|
||||||
@@ -40,7 +44,7 @@ class MapKeyValueAdapterUnitTests {
|
|||||||
|
|
||||||
@BeforeEach
|
@BeforeEach
|
||||||
void setUp() {
|
void setUp() {
|
||||||
this.adapter = new MapKeyValueAdapter();
|
this.adapter = new MapKeyValueAdapter(LinkedHashMap.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test // DATACMNS-525
|
@Test // DATACMNS-525
|
||||||
|
|||||||
Reference in New Issue
Block a user