Is there such a thing as having the most prefered design pattern for building applications in TDD or the iterative mode?
|
2
|
|
|
|
|
|
I think the question could be rewritten so it makes more sense in these words: "Which architectural patterns and strategies are useful in order to achieve flexibility when using a Test-Driven and incremental development strategy?" My answer would be: patterns that help you decouple your clases and components, like:
Also remember that one of the mantras of incremental and iterative development is 'Do the simplest thing that could possibly work'. Don't over-engineer. Does it makes sense according with what you asked? |
||
|
|
|
Please don't mix different things. You use a pattern when it's applicable and saves you time, effort, and makes your code look more standard. It has nothing to do with your development methodology! However, you may want to stress some things in your application architecture:
|
||
|
|
|
|
Design patterns are tools to help solve particular types of problems. The use of patterns is governed by the problems defined by the scope of requirements, not by a development methodology. |
||
|
|
|
I'm not sure that's a meaningful question. But I won't let that stop me... It's entirely likely that specific patterns may become apparent as being appropriate to aspects of the design of your application as it evolves under your chosen agile process, but to (hopefully not mis-) quote Ron Jeffries, "the code will tell you". Edit: But if you want a definitive answer, then Bridge. That's a good one. Or Visitor, I like that one too. Or most of the ones starting with "F". :) |
||||
|
|
|
Use a dynamic language like Python or Ruby to develop: You don't have to fight with many of the problems other languages have which are the reason for "design patterns" in the first place. Dynamic languages in combination with automated testing will give results really quick so you know which direction to take. If you realize then that you should use a static language for performance reasons or whatever you can translate the dynamic software you have already built. |
||
|
|
