[JAVA]在Junit中测试私有函数的方法(junit, private, method)
eclipse中如何写一个测试私有方法的junit?假设类Summer定义如下:public class Summer{ private int methodone(String argsone){ //method code ....... return 4; }}测试如下:public class SummerTest extends TestCase {