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
