我不認爲minInvocation或maxInvocation等同於Mockito中的times()。在那兒?JMockIt中的times()的等價物?
請參閱此問題:Major difference between: Mockito and JMockIt
尚未被任何人仍不回答。
編輯
,我發現自己的答案:在這裏添加它爲別人誰需要這樣回答:
的解決方案是使用DynamicPartialMocking和對象傳遞給期望或構造NonStrictExpectations並且不在該對象上調用任何函數。
然後在考證節,呼籲要衡量調用的次數,時間和凝固時間的對象的任何功能=你想
new NonStrictExpectations(Foo.class, Bar.class, zooObj)
{
{
// don't call zooObj.method1() here
// Otherwise it will get stubbed out
}
};
new Verifications()
{
{
zooObj.method1(); times = N;
}
};
你可以在答案添加爲一個答案(和接受它) - 而不是編輯問題?這樣,它不會顯示在'未答覆'的桶中? –