我有以下课程:
class MyClass {
public void doIt() {
methodOne();
methodTwo();
methodThree();
}
private void methodOne() {
// ...
}
// rest of methods similar...
}
我的目的是验证当我调用 doIt() 时,方法 metodOne()、methodTwo() 和 methodThree() 将按顺序被调用。
我正在使用mockito进行模拟。有谁知道我如何测试这种情况?