我正在开发测试用例。在这里,我使用模拟列表并在其中添加模拟对象。但是assetEquals总是失败并出现错误:
java.lang.AssertionError:
Expected :0
Actual :2
这是我开发的测试用例:
@Test
public void Test() {
MyClass ModelMock = mock(MyClass.class);
final List<HashMap<String, Object>> listModelMock = mock(List.class);
final Page currentPage = getMockedCurrentPage();
final Page childPage1 = mock(Page.class);
final Page childPage2 = mock(Page.class);
Iterator<Page> mockIterator = mock(Iterator.class);
HashMap<String, Object> object1HashMap = new HashMap<>();
HashMap<String, Object> object2HashMap = new HashMap<>();
when(currentPage.listChildren()).thenReturn(mockIterator);
when(mockIterator.hasNext()).thenReturn(true);
when(mockIterator.next()).thenReturn(childPage1);
when(mockIterator.next()).thenReturn(childPage2);
when(childPage1.getPath()).thenReturn("Test");
when(childPage1.getTitle()).thenReturn("Title of Page1");
object1HashMap.put("title", childPage1.getTitle());
object1HashMap.put("src", childPage1.getPath());
//Fail
assertEquals(object1HashMap.get(0), "Title of Page1");
when(childPage2.getPath()).thenReturn("Test");
when(childPage2.getTitle()).thenReturn("Title of Page2");
object2HashMap.put("title", childPage2.getTitle());
object2HashMap.put("src", childPage2.getPath());
listModelMock.add(object1HashMap);
listModelMock.add(object2HashMap);
// Fail
assertEquals(listModelMock.get(0).size(), 2);
}
答案 0 :(得分:3)
您的listModelMock是列表的模拟。你没有告诉你的嘲弄框架(从我能看到的东西可以推测Mockito)在add
上做什么。所以add
什么也没做。
根据我对您的代码的理解,我不认为您真的想要模拟列表。我认为真正的ArrayList
可以解决这个问题。
坦率地说,你正在测试的课程是什么?似乎代码中的每个对象都是模拟对象。以这种方式测试模拟框架毫无意义......
Nitpick:对于断言,预期值首先出现。所以assertEquals(2, listModelMock.get(0).size(),2)
;