Mockito를 사용하여 클래스의 일부 메소드를 조롱하는 방법이 있습니까?
예를 들어, (시피 고안)에서 Stock
클래스 I는 모의 할 getPrice()
및 getQuantity()
(아래 시험 조각에 도시 된 바와 같이) 반환 값이지만 I는 원하는 getValue()
부호화로 곱셈을 수행하는 Stock
클래스
public class Stock {
private final double price;
private final int quantity;
Stock(double price, int quantity) {
this.price = price;
this.quantity = quantity;
}
public double getPrice() {
return price;
}
public int getQuantity() {
return quantity;
}
public double getValue() {
return getPrice() * getQuantity();
}
@Test
public void getValueTest() {
Stock stock = mock(Stock.class);
when(stock.getPrice()).thenReturn(100.00);
when(stock.getQuantity()).thenReturn(200);
double value = stock.getValue();
// Unfortunately the following assert fails, because the mock Stock getValue() method does not perform the Stock.getValue() calculation code.
assertEquals("Stock value not correct", 100.00*200, value, .00001);
}