java – 可以在非最终具体类中的Powermockito模拟最终方法?

前端之家收集整理的这篇文章主要介绍了java – 可以在非最终具体类中的Powermockito模拟最终方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有一个非最终的具体类,最后一个方法如下.
public class ABC {
  public final String myMethod(){
      return "test test";
  }
}

使用Powermockito在junit中调用myMethod()可以返回别的东西吗?谢谢

解决方法

这样做:
@RunWith(PowerMockRunner.class)
@PrepareForTest(ABC.class)
public class ABCTest {

    @Test
    public void finalCouldBeMock() {
        final ABC abc = PowerMockito.mock(ABC.class);
        PowerMockito.when(abc.myMethod()).thenReturn("toto");
        assertEquals("toto",abc.myMethod());
    }
}
原文链接:https://www.f2er.com/java/122909.html

猜你在找的Java相关文章