You mock an entire class and the result is that all methods will return null.
Then you can use doReturn(...) to change that behavior. Similarly, you can use doThrow(...) to make (as I recall only void) methods throw exceptions.
Does that answer your question?