vote up -5 vote down star
1

Which one offers more advantages for a large software, say like Photoshop?

Also by TDD I don't mean just unit tests, because you can use unit tests in DDD too, just not the same way TDD does.

DDD: Design-Driven Development

TDD: Test-Driven Development

flag

56% accept rate
Although I gave you my answer I think you need to give more details about what you believe TDD is, because apparently you didn't exclude it from DDD. – Ionut G. Stan Jan 28 at 17:49
For the benefit of those who don't know what these acronyms mean, please identify. I assume TDD is test-driven design, but what's DDD? Doofus-driven design? (If so, some places I've worked use it.) – Kyralessa Jan 28 at 17:49
DDD stands for Domain Driven Design. I think that's what s/he meant. – Ionut G. Stan Jan 28 at 17:51
@Ionut: I did exclude TDD from DDD. Is this what you meant? – Joan Venge Jan 28 at 17:53
Design-Driven Development does not make much sense, does it? Or maybe I should immediately claim "Brain Driven Development", "Thought-Driven Development", "Keyboard-Driven Development" and "Language-Driven Development". – Carl Seleborg Jan 29 at 16:45
show 2 more comments

2 Answers

vote up 3 vote down check

I also don't think they're mutually exclusive I think you can use TDD to get to DDD.

link|flag
vote up 9 vote down

DDD = Domain Driven Design

TDD means that before you write any unit of behavior you have a test for this behavior and only this behavior. Only after these tests fail do you implement the behavior. In every incarnation that I've seen TDD has been on the level of a method or class - maybe a couple classes working together. The end result is that you get highly testable and hence very loosely coupled code. Ultimately though TDD is about creating code that can be tested.

DDD is a far more abstract philosophy and set of design patterns that addresses how to design a large, scalable, and maintainable system. Ultimately DDD is about creating a code eco-system that implicitly or explicitly captures important bits of domain knowledge.

So you see, they are certainly not mutually exclusive. Pretty much everyone I know who is knowledgeable in DDD is also a hard-core TDD enthusiast.

link|flag
Downvote? Seriously? WTF? – George Mauer Mar 18 at 14:43
I thought your answer was very good. Upvote. – awhite Mar 23 at 23:54

Your Answer

Get an OpenID
or

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