Stubs are used on methods with an expected return value which you setup in your test.Mocks are used on void methods which are verified in the Assert that they are called.
↧
Stubs are used on methods with an expected return value which you setup in your test.Mocks are used on void methods which are verified in the Assert that they are called.