我正在尝试使用mockito测试List但不知道如何设置我的预期值。
以下是我到目前为止的情况。此外,如果有人可以告诉我如何创建具有特定值的模拟对象,那将是非常棒的。
@Test
public void testFindAllProductsByCategoryId() throws Exception {
List<Map> expectedProductList = anyList(Products.class);
when(productListMock.findAllProductsByCategoryId(1)).thenReturn(expectedProductList);
List<Map> actualProductList = productListMock.findAllProductsByCategoryId(1);
}