gpt4 book ai didi

java - 类型 Stubber 中的方法 when(T) 不适用于参数 (void)

转载 作者:行者123 更新时间:2023-12-03 21:12:21 24 4
gpt4 key购买 nike

stub 无效时出现以下错误:

The method when(T) in the type Stubber is not applicable for the arguments (void)



这是我的示例代码:
doNothing().when(mockRegistrationPeristImpl.create(any(Registration.class)));

public void create(final T record) throws DataAccessException {
try {
entityManager.persist(record);
entityManager.flush();
} catch (PersistenceException ex) {}
}

我错过了什么?

最佳答案

你的括号在错误的地方,试试这个:

doNothing().when(mockRegistrationPeristImpl).create(any(Registration.class));

关于java - 类型 Stubber 中的方法 when(T) 不适用于参数 (void),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32379758/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com