4

我很不高兴处理有人用以下定义的接口

public Map<?, ?> getMap(String key);

我正在尝试编写使用此接口的单元测试。

Map<String,String> pageMaps = new HashMap<String,String();
pageMaps.put(EmptyResultsHandler.PAGEIDENT,"boogie");
pageMaps.put(EmptyResultsHandler.BROWSEPARENTNODEID, "Chompie");
Map<?,?> stupid = (Map<?, ?>)pageMaps;
EasyMock.expect(config.getMap("sillyMap")).andReturn(stupid);

并且编译器正在运行。

The method andReturn(Map<capture#5-of ?,capture#6-of ?>) in the type IExpectationSetters<Map<capture#5-of ?,capture#6-of ?>> is not applicable for the arguments (Map<capture#7-of ?,capture#8-of ?>)

如果我尝试pageMaps直接使用,它会告诉我:

The method andReturn(Map<capture#5-of ?,capture#6-of ?>) in the type IExpectationSetters<Map<capture#5-of ?,capture#6-of ?>> is not applicable for the arguments (Map<String,String>)

如果我做pageMaps一个Map<?,?>,我不能把字符串放在里面。

The method put(capture#3-of ?, capture#4-of ?) in the type Map<capture#3-of ?,capture#4-of ?> is not applicable for the arguments (String, String)

我见过一些客户端代码会进行丑陋的未经检查的转换,例如

@SuppressWarnings("unchecked")
        final Map<String, String> emptySearchResultsPageMaps = (Map<String, String>) conf.getMap("emptySearchResultsPage");

如何将数据转换为Map<?,?>,或将我的转换Map<String,String>Map<?,?>

4

1 回答 1

5
  1. Map<String, String> map = getMap("abc");没有演员,你就无法写作
  2. 这个问题更多地与easymock和expectandandReturn方法返回/预期的类型有关,我不熟悉。你可以写

    Map<String, String> expected = new HashMap<String, String> ();
    Map<?, ?> actual = getMap("someKey");
    boolean ok = actual.equals(pageMaps);
    //or in a junit like syntax
    assertEquals(expected, actual);
    

不确定这是否可以与您的嘲笑内容混合在一起。这可能会起作用:

EasyMock.expect((Map<String, String>) config.getMap("sillyMap")).andReturn(pageMaps);

另请注意,您不能使用通配符向通用集合中添加任何内容。所以这:

Map<?, ?> map = ...
map.put(a, b);

不会编译,除非ab为空。

于 2013-02-24T10:21:22.607 回答