作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想验证一个助手类所做的日志记录,该类调用带有一些可变参数的方法。
我正在使用 Mockito (1.10.19) 来模拟实际的记录器,并验证模拟的方法是否按预期调用。
我使用 ArgumentCaptor 来验证参数。
Mockito.verify 验证调用模拟方法的次数,
但是, ArgumentCaptor.getAllValues 返回一个包含所有方法调用的所有参数的单个数组。
这是一个示例代码:
interface Logger
{
void info(Object... params);
}
@Mock
Logger logger;
public void logMatrix(String[][] matrix)
{
for (int column = 0; column < matrix.length; column++)
{
logger.info(column, " : ", matrix[column]);
}
}
@Test
public void givenMatrix_whenLogMatrix_thenLogsEachRow() throws Exception
{
String[][] matrix = {
{"a", "b"},
{"c", "d"}
};
ArgumentCaptor<Object[]> captor = ArgumentCaptor.forClass(Object[].class);
logMatrix(matrix);
// verify the mocked method is called twice
Mockito.verify(logger, times(2)).info(captor.capture());
// verify the contents of the calls: expecting two arrays, one for each call
assertThat(captor.getAllValues()).hasSize(2);
// fails !
}
java.lang.AssertionError:
Expected size:<2> but was:<6> in:
<[0, " : ", ["a", "b"], 1, " : ", ["c", "d"]]>
at TestLogHelper.givenMatrix_whenLogMatrix_thenLogsEachRow(TestLogHelper.java:72)
...
最佳答案
因此,在 5 年后操作问题仍然没有答案,因为只有解决方法。这些是:
getAllValues()
用于验证。这是最新 Mockito 3.8.0 argThat()
在这种情况下 关于java - ArgumentCaptor mockito vararg getAllValues,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35993559/
我想验证一个助手类所做的日志记录,该类调用带有一些可变参数的方法。 我正在使用 Mockito (1.10.19) 来模拟实际的记录器,并验证模拟的方法是否按预期调用。 我使用 ArgumentCap
我是一名优秀的程序员,十分优秀!