gpt4 book ai didi

java - junit 测试 - 类型不匹配 : cannot convert from void to Boolean

转载 作者:行者123 更新时间:2023-11-29 09:44:56 25 4
gpt4 key购买 nike

<分区>

我有以下测试-

public void testStore() throws ItemNotStoredException {
Boolean result = itemSrvc.storeItem(items);
Assert.assertFalse(result);
}

但我收到错误类型不匹配:无法从 void 转换为 boolean 值。

它正在测试什么......

public void storeItem(Items items) throws ItemNotStoredException {
try {
ObjectOutputStream output = new
ObjectOutputStream (new FileOutputStream ("itemdatabase"));

output.writeObject(items);
output.flush();
output.close();
} catch (IOException e) {
throw new ItemNotStoredException ("Unable to store file", e);
}


}

澄清一下——我不想让 storeItem 返回任何东西,我只是想测试它,所以也许我的测试本身就是错误的。如果是这种情况,我们将不胜感激任何有关如何修复测试的建议。

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