我正在嘗試使用Mockito驗證最終方法的執(zhí)行情況,例如:Mockito.verify(this.productClassQualifierQueryFactory).setEntityManager(this.em);有了這個我得到以下錯誤:Example of correct verification: verify(mock).doSomething()Also, this error might show up because you verify either of: final/private/equals()/hashCode() methods.Those methods *cannot* be stubbed/verified.Mocking methods declared on non-public parent classes is not supported.從錯誤中我知道我們無法使用Mockito驗證最終方法或私有方法。但是還有其他方法可以通過Mockito或PowerMock做到嗎?
1 回答

料青山看我應(yīng)如是
TA貢獻(xiàn)1772條經(jīng)驗 獲得超8個贊
使用運行測試,@RunWith(PowerMockRunner.class)
并準(zhǔn)備具有final和static方法的類。@PrepareForTest(ClassName.class)
添加回答
舉報
0/150
提交
取消