エラーの詳細:
org.mockito.exceptions.misusing.WrongTypeOfReturnValue:
Boolean cannot be returned by updateItemAttributesByJuId()
updateItemAttributesByJuId() should return ResultRich
This exception might occur in wrongly written multi-threaded tests.
Please refer to Mockito FAQ on limitations of concurrency testing.
私のコード:
@InjectMocks
protected ItemArrangeManager arrangeManagerSpy = spy(new ItemArrangeManagerImpl());
@Mock
protected JuItemWriteService juItemWriteService;
when(arrangeManagerSpy
.updateItemAttributes(mapCaptor.capture(), eq(juId), eq(itemTO.getSellerId())))
.thenReturn(false);
ご覧のとおり、私はではなく(を返します)を呼び出しwhen
ています。updateItemAttributes
boolean
updateItemAttributesByJuId
- Mockitoが
boolean
からを返そうとしているのはなぜupdateItemAttributesByJuId
ですか? - これをどのように修正できますか?