File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/test/java/org/springframework/data/map Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 18
18
import static org .assertj .core .api .Assertions .*;
19
19
20
20
import java .util .AbstractMap ;
21
+ import java .util .LinkedHashMap ;
21
22
import java .util .Map ;
22
23
23
24
import org .junit .jupiter .api .BeforeEach ;
24
25
import org .junit .jupiter .api .Test ;
25
26
import org .springframework .data .util .CloseableIterator ;
26
27
27
28
/**
29
+ * Unit tests for {@link MapKeyValueAdapter}.
30
+ *
28
31
* @author Christoph Strobl
32
+ * @author Mark Paluch
29
33
*/
30
34
class MapKeyValueAdapterUnitTests {
31
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 );
44
48
}
45
49
46
50
@ Test // DATACMNS-525
You can’t perform that action at this time.
0 commit comments