This page is intended as a place to help you explore the use of behavior driven development techniques and how it can be applied to BizTalk development.
Behavior Driven Development is an agile software development practice that changes the way we do testing as a developer to focus on defining the behavior of software using business language and allowing us to work closely with non-technical people to agree the specification for what the software should do. In this process we write features using the standard user story type approach and within that acceptance tests using the Gherkin syntax of Given/When/Then. An example could be:
Feature: Employee Promotion Rules
In order to manage staff promotions As a hr manager I want to be able to calculate if an employee should be promoted or not
In order to manage staff promotions
As a hr manager
I want to be able to calculate if an employee should be promoted or not
Scenario: Level 4 Employee should not be promoted regardless of score
Given I have an employee called Joe And the employees current level is Level 4 And the employees current performance is 100 When The employees appraisal is evaluated by the promotion rules Then the employees appraisal score should be 100 And the employee should not be recommended for promotion
Given I have an employee called Joe
And the employees current level is Level 4
And the employees current performance is 100
When The employees appraisal is evaluated by the promotion rules
Then the employees appraisal score should be 100
And the employee should not be recommended for promotion
BDD is not a replacement for test driven development but should enhance it to give you a number of significant additional benefits. For more background on BDD please refer to Wikipedia.
In the .net world there are a number of tools available to help you implement BDD they are listed below:
Below are a number of different resources showing how BDD can be applied to different aspects of BizTalk development.
Michael Stephenson has produced a pair of videos which are available on cloudcasts.net in which he outlines firstly what behavior driven development is and how it can help BizTalk developers and then in the 2nd video he walks through a practical example of using the technique. Part 1 - http://tinyurl.com/84j78mo
Part 2 - http://tinyurl.com/6n72toy
This article talks about how to use BDD techniques to develop BizTalk Business Rules.
http://geekswithblogs.net/michaelstephenson/archive/2012/07/13/150226.aspx
This article talks about how to use Specflow to help develop and test maps. http://geekswithblogs.net/michaelstephenson/archive/2012/07/13/150230.aspx Andy Davis has also written an article about using a specification base class to help you test maps using BDD techniques also. This article is particularly useful to demonstrate a quick way to test individual field mappings http://www.andy-davis.co.uk/?p=264 The techniques in both articles could also be combined together to create a powerful approach suited to anything from a simple map to a very complicated one which would also benefit from the documentation that specflow would offer.
In this article it discusses how people using older versions of BizTalk where Specflow may not be supported in your version of Visual Studio can use a different technique with BizUnit 2 to still achieve the same end results of having a BDD approach to acceptance testing. http://geekswithblogs.net/michaelstephenson/archive/2011/11/04/147577.aspx As a follow on from the article about using a style of implementation of BDD with BizUnit 2 for BizTalk 2006 R2 implementations the below article shows how you can use MSBuild to generate documentation from your test cases so you get a similar output from your build process where you have nice feature documentation for all of your acceptance tests. http://geekswithblogs.net/michaelstephenson/archive/2011/12/01/147911.aspx
Another important place to find a huge amount of BizTalk related articles is the TechNet Wiki itself. The best entry point is BizTalk Server Resources on the TechNet Wiki.
Maheshkumar S Tiwari edited Revision 10. Comment: Minor formatting
Steef-Jan Wiggers edited Revision 7. Comment: Changed title
Steef-Jan Wiggers edited Revision 6. Comment: Minor edits, fixed typos
Sandro Pereira edited Revision 4. Comment: Just add TOC and See also
Carsten Siemens edited Revision 3. Comment: Added tags: en-US, has comment
Great article Michael.
We want more!
Great post
TNWiki Spotlight article: blogs.technet.com/.../tnwiki-article-spotlight-behaviour-driven-development-with-biztalk.aspx