私は次のクラスを持っています:
class MyClass {
public void doIt() {
methodOne();
methodTwo();
methodThree();
}
private void methodOne() {
// ...
}
// rest of methods similar...
}
私の意図は、doIt() を呼び出すと、メソッド metodOne()、methodTwo()、および methodThree() がこの順序で呼び出されることを確認することです。
私はモッキングにmockitoを使用しています。このシナリオをテストする方法を知っている人はいますか?