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

对私有静态方法进行单测

时间:2016-08-21 15:22:22      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

对私有静态方法进行单测

1.被单测的类:

/**
 * Created by 58 on 2016-8-21.
 */
public class Student {

    private static String reading(String bookName) {
       return "student read " + bookName;
    }
}

2.使用junit方式

    @Test
    public void readingTest() {

        String expected = "student read ";
        String input = "Thinking in java";


        try {
            Method targetMethod = Student.class.getDeclaredMethod("reading", String.class);
            targetMethod.setAccessible(true);
            Object actual = targetMethod.invoke(Student.class, input);
            assertEquals(expected + input, actual);
        }catch (Exception e) {
            fail("单测异常");
        }
    }

 

对私有静态方法进行单测

标签:

原文地址:http://www.cnblogs.com/booth-sun/p/5792714.html

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