如何验证方法是否被 mockito 从具有相同类的其他方法调用
我想测试一些在同一类中调用其他方法的方法。它们基本上是相同的方法,但具有不同数量的参数,因为数据库中有一些默认值。我展示这个
public class A{
Integer quantity;
Integer price;
A(Integer q, Integer v){
this quantity = q;
this.price = p;
}
public Float getPriceForOne(){
return price/quantity;
}
public Float getPrice(int quantity){
return getPriceForOne()*quantity;
}
}
所以我想测试在调用方法getPrice(int)时是否调用了getPriceForOne()方法。基本上调用 getPrice(int) 作为正常和 mock getPriceForOne。
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
....
public class MyTests {
A mockedA = createMockA();
@Test
public void getPriceTest(){
A a = new A(3,15);
... test logic of method without mock ...
mockedA.getPrice(2);
verify(mockedA, times(1)).getPriceForOne();
}
}
请记住,我有一个更复杂的文件,它是其他人的实用程序,它们必须全部在一个文件中。