开发者

Which style exists for mocking with Rhino?

开发者 https://www.devze.com 2023-01-09 10:45 出处:网络
I heard that latest 开发者_如何学Pythonstyle is AAA. Is there any other one? Why we use one and don\'t use another?The difference between the new AAA style and the old record/replay style is best unde

I heard that latest 开发者_如何学Pythonstyle is AAA. Is there any other one? Why we use one and don't use another?


The difference between the new AAA style and the old record/replay style is best understood by examining the difference between mocks and stubs. AAA uses stubs, while record/replay uses mocks.

I have blogged about the difference here.


I think there are 2 major styles - one is the classic one (not sure what is the name) - which existed from the beginning and the earliest versions of .Net (certainly I used it with .Net 1.1) and the AAA one. Both are still fully functional, so feel free to use any (but you can't mix them - it simply doesn't work and you will get weird errors).

The AAA style was developed after lambda expressions and extension methods were introduced in C# and many people (including me) think it is cleaner, easier to read and expresses the intent of the test better.

0

精彩评论

暂无评论...
验证码 换一张
取 消