[freemind]/wp-content/uploads/2011/08/TDD-Nuggets2.mm[/freemind]
Reader Interactions
Comments
Trackbacks
-
[…] Mind map เกี่ยวกับ TDD […]
-
[…] my one of the blogs TDD Nuggets I used Freemind Viewer plugin which worked really well. However it had one annoying issue. The […]
hatim says
great summary. Maybe you can link detailed public articles to reinforce these points. Excellent resource for new comers to TDD
ShriKant Vashishtha says
Good point hatim. I will update the post with links.
ShriKant Vashishtha says
Links and references are displayed with red arrow (–>) sign in the mindmap.
ShriKant Vashishtha says
I realized that some people are trying to print this page which doesnt work because of Flash content. I have added a “Printer Friendly Version” in form of PDF at the bottom of post
Daniel Marbach says
Hy,
Thanks. See also the cheat sheets from my friend urs enzler:
http://www.planetgeek.ch/2011/01/04/clean-code-and-clean-tdd-cheat-sheets/
Have fun
steven says
i have to disagree with the testdata part. i think test data belongs in the test class, not outside of it in some objectmother.
objectmother ends up as some massive one-time use set of data all lumped together. then people think they can make the objectmother use its own testdata to override defaults and what not. this then ends up being a huge pain when all you want to know is what exactly some testdata is without going through hurdles of abstractions.
tldr: objectmother is a pile of shit and already known as a antipattern