NSubstitute を使用して、以前の .When().Do() 構成をクリアまたは削除することは可能ですか?
substitute.When(s => s.Method(1)).Do(c => { /* do something */ });
// code
substitute.When(s => s.Method(1)).Clear(); // <-- is this possible?
substitute.When(s => s.Method(1)).Do(c => { /* do something different */ });
// other code