result should return: [mock someMessage]
mock := Mock new.mock stub someMessage willReturn: #result.
mock stub anotherMessage willReturn: #anotherResult.
mock someMessage should be: #result.mock anotherMessage should be: #anotherResult.#result should beReturnedFrom: [mock someMessage].
#result should not beReturnedFrom: [mock anotherMessage]