The latest version of Rhino mocks supports Arrange, Act Assert methodology. Does that mean that the record method that it used in previous version is deprecated?

I thought it was (deprecated), but as I was reading "The Art of Unit Testing" he uses the Record method when he introduces Rhino Mocks. So now I am not so sure....

Any one know for sure?


UPDATE: OK, I need to read the whole chapter before I get all upset about how he is doing things. In section 5.8 he covers AAA syntax. Still, my question remains, which is preferred now: AAA or record?

link|improve this question

75% accept rate
feedback

1 Answer

You don't use Record when you are using AAA syntax. Could you paste the link to "The Art of Unit Testing"? A lot of the documentation hasn't been updated after introduction of AAA syntax.

EDIT: I prefer the AAA syntax, because it reads better. It seems also easier to set some constraints on arguments (especially the Arg<...>.Match), you don't have to remember about running ReplayAll, etc.

link|improve this answer
I am just reading the book. Maybe I was not clear, but he is not trying to mix the two, he just favors the record method over the AAA syntax. I thought the AAA syntax had replaced the record style. But he is using it In chapter 5. – Vaccano Aug 26 '10 at 16:17
See my update, he covers AAA later in the chapter. I should have read the whole chapter... – Vaccano Aug 26 '10 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.