up vote 0 down vote favorite
share [g+] share [fb]

I'm trying to explore Behavior Driven Design and Domain Driven Design. I'm getting that written specifications drive the tests in BDD, but also that business logic can be encapsulated using the specification pattern for re-use in domain objects and repositories, etc.

Are these basically the same concept just used in different ways, used in conjunction together, or am I completely confusing the concepts?

Please shed some light, if possible.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

BDD or context specification is a style of writing unit tests in a test first manner. DDD is a term coined by Eric Evans that basically re-introduces appropriate design patterns when you are constructing software systems. If you are wanting to do test first development in a context specification style then see this link. From a BDD standpoint there are lots of resources out there if you really want to design your software systems using the patterns described in Eric Evans' book you will find some good resources here

link|improve this answer
I realize that BDD and DDD are not the same, but most people doing BDD utilize DDD. I'm just wondering how specifications, which both utilize, converge or diverge. – cadmium Sep 11 '09 at 14:51
The purpose of doing context specification style TDD/BDD is to flush out the behaviors and interactions between the components of your application. The context specification style also brings out design patterns in your code because it forces you to write testable/decoupled components. I have an example on my blog if you want to check it out. – Michael Mann Sep 11 '09 at 15:01
Sure, have a link? – cadmium Sep 11 '09 at 17:42
1  
feedback

Your Answer

 
or
required, but never shown

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