如何模拟来自Junit的内部方法的调用

如何模拟来自Junit的内部方法的调用

本文介绍了如何模拟来自Junit的内部方法的调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有MyClass,并且正在为每个方法(Method1Test)做一个测试类

I have MyClass and I am doing a test-class for every method (Method1Test)

public class MyClass {
    public int method1(){
        int a = method2();
        return a;
    }
    public int method2(){
        return 0;
    }
}

@RunWith(MockitoJUnitRunner.class)
public class Method1Test {
    @InjectMocks
    private MyClass myClass = new MyClass();
    @Before
    public void setup(){}
    @Test
    public void test01(){
        Mockito.when(myClass.method2()).thenReturn(25);
        int a = myClass.method1();
        assertTrue("We did it!!!",a==25);
    }
}

问题是我无法模拟对method2的调用,以使其返回不同的值. Mockito句子不起作用.

The problem is that I am not able to mock the call to method2 to make it return a diferent value. The Mockito sentence don't do the work.

非常感谢^ _ ^

推荐答案

您必须在被测类上创建间谍,然后通过重新定义间谍method2()的行为来部分模拟间谍

You have to create a spy on the class-under-test and partially mock it by redefining the behavior for the method2() of the spy

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.when;


public class Method1Test {

  private MyClass myClass = new MyClass();

  @Test
  public void test01(){
    //given
    MyClass spy = spy(myClass); //create a spy for class-under-test
    when(spy.method2()).thenReturn(25); //partially override behavior of the spy
    //when
    int a = spy.method1(); //make the call to method1 of the _spy_!
    //then
    assertEquals(25, a);
  }
}

除此之外,您不需要Mockito Runner和@InjectMocks进行测试,因为您没有将@Mock注释的模拟物注入待测类.

Apart from this, you don't require neither the Mockito Runner nor the @InjectMocks for your test as you're doing no injection of @Mock annotated mocks into the class-under-test.

此外,仅当断言的条件满足 NOT 时,才会显示assertTrue语句中的消息.因此至少应该 我们失败了!!!" ;)

Further, the message in the assertTrue statement is only displayed, when the condition of the assertion is NOT fulfilled. So it should be at least "We failed!!!" ;)

这篇关于如何模拟来自Junit的内部方法的调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 04:39