```cs MyMock .SetupMyMethod() .Return(null) .Return(123); MyMock .SetupMyMethod() .Return(123) .Return(234); ``` When chained - it should add calls. When a separate block - it should overwrite.
When chained - it should add calls.
When a separate block - it should overwrite.