如果在测一个类的某一个方法时,这个方法还调用了此类的其他方法,那么如何指定其他方法的返回值呢?

public class Calc {

  1. static {
  2. System.out.println("hahaha");
  3. }
  4. public int add(int a, int b) {
  5. return interADD(a, b);
  6. }
  7. private int interADD(int a, int b) {
  8. return a + b;
  9. }
  10. public int minus(int a, int b) {
  11. return interMinus(a, b);
  12. }
  13. public int interMinus(int a, int b) {
  14. return a-b;
  15. }
  16. }
  17. package com.kevin.util;
  18. import static org.junit.Assert.*;
  19. import junit.framework.Assert;
  20. import org.easymock.EasyMock;
  21. import org.junit.Test;
  22. import org.junit.runner.RunWith;
  23. import org.powermock.api.easymock.PowerMock;
  24. import org.powermock.core.classloader.annotations.PrepareForTest;
  25. import org.powermock.core.classloader.annotations.SuppressStaticInitializationFor;
  26. import org.powermock.modules.junit4.PowerMockRunner;
  27. @RunWith(PowerMockRunner.class)
  28. @PrepareForTest({Calc.class})
  29. //suppress static initial
  30. @SuppressStaticInitializationFor({"Calc.class"})
  31. public class CalcTest {
  32. //mock private method in class that be testing
  33. @Test
  34. public void testAdd() {
  35. Calc createPartialMock = PowerMock.createPartialMock(Calc.class, "interADD");
  36. try {
  37. PowerMock.expectPrivate(createPartialMock, "interADD",2,3).andReturn(1000);
  38. PowerMock.replay(createPartialMock);
  39. int result = createPartialMock.add(2, 3);
  40. Assert.assertEquals(1000, result);
  41. } catch (Exception e) {
  42. // TODO Auto-generated catch block
  43. fail();
  44. }
  45. }
  46. //mock public method int class that be testing
  47. @Test
  48. public void testMinus() {
  49. Calc createPartialMock = PowerMock.createPartialMock(Calc.class, "interMinus");
  50. try {
  51. EasyMock.expect(createPartialMock.interMinus(5, 4)).andReturn(1000);
  52. EasyMock.replay(createPartialMock);
  53. int result = createPartialMock.minus(5, 4);
  54. Assert.assertEquals(1000, result);
  55. } catch (Exception e) {
  56. // TODO Auto-generated catch block
  57. fail();
  58. }
  59. }
  60. }

PowerMock使用遇到的问题——2的更多相关文章

  1. Mock之easymock, powermock, and mockito

    easymock, powermock, and mockito Easymock Class Mocking Limitations To be coherent with interface mo ...

  2. 用PowerMock mock 由工厂方法产生的对象

    有些对象需要mock的对象是由工厂方法产生出来的,而工厂方法一般是静态方法,这时候就需要同时mock工厂方法及对象 被测方法: public class EmployeeServiceFactory ...

  3. 用PowerMock spy mock private方法

    在实际的工作中,经常碰到只需要mock一个类的一部分方法,这时候可以用spy来实现. 被测类: public class EmployeeService { public boolean exist( ...

  4. 用PowerMock mock static方法

    在编写代码时,经常需要调用别人已经写好的工具类,而这些工具提供的方法经常是static方法,在这里,直接贴出<PowerMock实战手册>中的例子 待测试方法: public class ...

  5. 用PowerMock mock 临时变量

    在开发时,经常遇到这种情况,被测试方法所调用的类不是通过构造注入的,而是通过临时new出来的,如下面待测方法: public class EmployeeService { private Emplo ...

  6. PowerMock遇到的问题——5

    在做单元测试时,有时在一个方法中会调用这个类的其他私有方法,那么如何指定这些方法的返回值呢? 解决方法:用 createPartialMock 具体用法如下: TestClass test=Power ...

  7. 用maven搭建 testNG+PowerMock+Mockito测试框架

    单元测试是开发中必不可少的一部分,是产品代码的重要保证. Junit和testNG是当前最流行的测试框架,Junit是使用最广泛的测试框架,有兴趣的话自己baidu一下. testNG基于Junit和 ...

  8. PowerMock 简介--转载

    原文地址:https://www.ibm.com/developerworks/cn/java/j-lo-powermock/ EasyMock 以及 Mockito 都因为可以极大地简化单元测试的书 ...

  9. PowerMock遇到的问题——4

    当我们在测试一个方法的构造方法的时候,有的时候内部需要new一些对象,这是就需要用到PowerMock.exceptNew(),这个方法,但有时候传的参数有关键字this,比如SAPPublisher ...

  10. PowerMock 遇到的问题——2

    如果我们要测试的类继承另一个类,而且在构造方法中有super():那么怎么Mock那个super语句呢? 在PowerMock中有一个suppressConstructor方法,具体写法如下: Pow ...

随机推荐

  1. 专题实验 PGA

    PGA : 是完全为 server process 服务的, 在 server process 创建时被分配到, 在server process 终止时被释放. 而且是非共享的, 只独立服务于这个se ...

  2. JAVA的extends用法

    理解继承是理解面向对象程序设计的关键.在Java中,通过关键字extends继承一个已有的类,被继承的类称为父类(超类,基类),新的类称为子类(派生类).在Java中不允许多继承.(1)继承 clas ...

  3. 基于SpringBoot项目的https

    在spring中配置项目运行的端口很简单. 在application.properties中 server.port: 这样配置后,spring boot内嵌的tomcat服务器就是跑在8080端口启 ...

  4. linux下创建管理员组&nbsp;使用&nbsp;su&nbsp;-&nbsp;命令

    通常情况下,用户通过执行“su -”命令.输入正确的root密码,可以登录为root用户来对系统进行管理员级别的配置.但是,为了更进一步加强系统的安全性,有必要建立一个管理员的组,只允许这个组的用户来 ...

  5. Libsvm:脚本(subset.py、grid.py、checkdata.py) | MATLAB/OCTAVE interface | Python interface

    1.脚本 This directory includes some useful codes: 1. subset selection tools. (子集抽取工具) subset.py 2. par ...

  6. Windows CPU占用率过高

    今天调试程序,发现Windows7的CPU占用率一直为25%左右,如下图所示.四核25%,换成单核那就是100%的占用率了! 上图进入"进程"页面,单击"CPU" ...

  7. const 不再迷茫

    博客地址:http://blog.csdn.net/jiangxinnju github:https://github.com/jiangxincode 首先说明一下const在C和C++中的主要用法 ...

  8. linux笔记:搜索命令find,locate,which,whereis,grep

    命令名称:find功能:文件搜索命令所在路径:/bin/find用法:find 搜索范围 匹配条件其他:举例:find /root -name initfind /root -size +1024fi ...

  9. JavaScript:闭包

    根据MDN上的解释『闭包是指函数有自由独立的变量.换句话说,定义在闭包中的函数可以“记忆”它创建时候的环境.』 闭包有两个主要的作用: 1.访问内部函数的局域变量: 2.将创建的变量永久保存在内存中, ...

  10. 8个实用的页面布局和用户界面jQuery插件

    网页设计师和网页开发人员在做项目的时候可能会有一些页面的布局或者对于UI有一些特定的要求.可能一些需求不能单独使用CSS就能实现的.于是很多时候开发人员都会消耗大量的时间和精力去写一些JS来协助实现. ...