码迷,mamicode.com
首页 > 其他好文 > 详细

Junit中对私有方法测试

时间:2015-01-13 12:35:40      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:junit4   junit私有方法测试   

在Junit中对私有方法进行测试有两种方法:

     一、改变私有方法的访问权限(此方法并不推荐)

     二、使用反射机制(推荐)

      例如:Calculator类中有一个  private int add2(int a,int b)
        {
                  return a+b;
          }


              那么在我们的测试类的测试方法中:

   @Test
   public void add2()
   {
Calculator c=new Calculator();
Class<Calculator> cal=Calculator.class;

try {
               Method method=cal.getDeclaredMethod("add2", new Class[]{int.class,int.class});
method.setAccessible(true);
       Object obj=method.invoke(c, new Object[]{1,2});

        Assert.assertEquals(3, obj);
} catch (Exception e) {
Assert.fail("-----");

}



              

       

Junit中对私有方法测试

标签:junit4   junit私有方法测试   

原文地址:http://blog.csdn.net/u013516966/article/details/42674163

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!