如何使用powermockito

时间:2015-05-12 06:21:37

标签: junit4 powermock testcase

我只是想知道我是否有像 -

这样的代码
public class A {
    static String b = "hello";

public static String a() {
    String b = b();
    String d = d(b);
    String e = e(d, b);
    return e;
}

public static String b() {
    return b;
}

public static void c(String c) {
    b = c;
}

public static String d(String d) {
    return d;
}

public static String e(String e1, String e2) {

    return e1 + e2;
}
}

我将如何使用power mockito为此编写测试用例,因为所有方法都是静态的,方法也是无效的。

我得到的第一件事是我只需要为方法a编写测试用例,因为它使用了所有其他方法,因此所有其他方法也将覆盖它。 任何人都可以帮助我,告诉我如何测试它。

0 个答案:

没有答案