私はそのようなJavaコードを持っています:
public class A {
public int get() {
// many codes
String s = new String();
//...
int n = 5;
return isEmpty(s) ? n : -1;
}
public boolean isEmpty(String s) {
return s.isEmpty();
}
}
get() だけをテストしたいのですが、同時に isEmpty() をテストしたくないので、isEmpty() をモックしたいのですが、メソッドをテストするだけです。クラスの別のメソッドを呼び出す場合は、簡単にモックをモックできますメソッド?