show/hide this revision's text 3 deleted 17 characters in body

You should mock an object when you have a dependancy in a unit of code you are trying to test that needs to be "just so".

For example, when you are trying to test some logic in your unit of code but you need to get something from another object and what is returned from this dependancy might affect what you are trying to test - mock that object.

A great podcast on the topic can be found here

show/hide this revision's text 2 added 2 characters in body

You should mock an object when you have a dependancy in a unit of code you are trying to test that needs to be "just so".

For example, when you are trying to test some logic in your unit of code but you need to get something from another class object and what is returned from this dependancy might break affect what you are trying to test - mock that object.

A great podcast on the topic can be found here

show/hide this revision's text 1

You should mock an object when you have a dependancy in a unit of code you are trying to test that needs to be "just so".

For example, when you are trying to test some logic in your unit of code but you need to get something from another class and what is returned from this dependancy might break what you are trying to test - mock that object.

A great podcast on the topic can be found here