mock aren't stub 讀後心得

Download Mock Aren't Stub 讀後心得

If you can't read please download the document

Upload: wei-jen-lu

Post on 16-Apr-2017

2.264 views

Category:

Documents


6 download

TRANSCRIPT

Recommendation of a Strategy

Mocks Aren't Stubs

Lu Wei Jen

http://blog.weijen.nethttp://twitter.com/weijenluhttp://facebook.com/weijenlu

http://martinfowler.com/articles/mocksArentStubs.html

ihower

Mock & Stub

mock objectv.s.mock object

focus on one element you want

Mocks v.s Stubs

Mock

Mock object

Stub

Real object Stub method

Stubs is State Verification

Mocks is Behavior Verification

class MailServer def initialize @messages = Array.new end

def send(msg) @messages