up vote 73 down vote favorite
37
share [g+] share [fb]

We have been using BDD (from Dan North's perspective) as a mechanism to record user acceptance tests and drive development on a couple of projects, with decent success. To date though we have not actually automated the tests themselves.

I am now looking in to automating the tests, but I am not sure which behaviour framework to back. So far NBehave seems to be the forerunner - but are there any others I should be looking at? Is there a clear 'winner' at the moment?

link|improve this question

78% accept rate
feedback

9 Answers

up vote 88 down vote accepted

The Quick Answer

One very important point to bring up is that there are two flavors of Behavior Driven Development. The two flavors are xBehave and xSpec.

xBehave BDD: SpecFlow

SpecFlow (very similar to cucumber from the Ruby stack) is excellent in facilitating xBehave BDD tests as Acceptance Criteria. It does not however provide a good way to write behavioral tests on a unit level. There are a few other xBehave testing frameworks, but SpecFlow has gotten a lot of traction.

xSpec BDD: NSpec

For behavior driven development on a unit level, I would recommend NSpec (inspired directly by RSpec for Ruby). You can accomplish BDD on a unit level by simply using NUnit or MSTest...but they kinda fall short (it's really hard to build up contexts incrementally). MSpec is also an option, there has been a lot of work put into it, but there are just somethings that are just simpilier in NSpec (you can build up context incrementally in MSpec, but it requires inheritance which can become complex).

The Long Answer

The two flavors of BDD primarily exist because of the orthogonal benefits they provide.

Pros and Cons of xBehave (GWT Syntax)

Pros

  • helps facilitate a conversations with the business through a common dialect called (eg. Given ...., And Given ...., When ......, And When ..... , Then ...., And Then)
  • the common dialect can then be mapped to executable code which proves to the business that you actually finished what you said you'd finish
  • the dialect is constricting, so the business has to disambiguate requirements and make it fit into the sentences.

Cons

  • While the xBehave approach is good for driving high level Acceptance Criteria, the cycles needed to map English to executable code via attributes makes it infeasible for driving out a domain at the unit level.
  • Mapping the common dialect to tests is PAINFUL (ramp up on your regex). Each sentence the business creates must be mapped to an executable method via attributes.
  • The common dialect must be tightly controlled so that managing the mapping doesn't get out of hand. Any time you change a sentence, you have to find method that directly relates to that sentence and fix the regex matching.

Pros and Cons of xSpec (Context/Specification)

Pros

  • Allows the developer to build up context incrementally. A context can be set up for a test and some assertions can be performed against that context. You can then specify more context (building upon the context that already exists) and then specify more tests.
  • No constricting language. Developers can be more expressive about how a certain part of a system behaves.
  • No mapping needed between English and a common dialect (because there isn't one).

Cons

  • Not as approachable by the business. Let's face it, the business don't like to disambiguate what they want. If we gave them a context based approach to BDD then the sentence would just read "Just make it work".
  • Everything is in the code. The context documentation is intertwined within the code (that's why we don't have to worry about mapping english to code)
  • Not as readable given a less restrictive verbiage.

Samples

The Bowling Kata is a pretty good example.

SpecFlow Sample

Here is what the specification would look like in SpecFlow (again, this is great as an acceptance test, because it communicates directly with the business):

Feature File

The feature file is the common dialect for the test.

Feature: Score Calculation 
  In order to know my performance
  As a player
  I want the system to calculate my total score

Scenario: Gutter game
  Given a new bowling game
  When all of my balls are landing in the gutter
  Then my total score should be 0
Step Definition File

The step definition file is the actual execution of the test, this file includes the mappings for SpecFlow


[Binding]
public class BowlingSteps
{
    private Game _game;

    [Given(@"a new bowling game")]
    public void GivenANewBowlingGame()
    {
        _game = new Game();
    }

    [When(@"all of my balls are landing in the gutter")]
    public void WhenAllOfMyBallsAreLandingInTheGutter()
    {
        _game.Frames = "00000000000000000000";
    }

    [Then(@"my total score should be (\d+)")]
    public void ThenMyTotalScoreShouldBe(int score)
    {
        Assert.AreEqual(score, _game.Score);
    }
}

NSpec Sample, xSpec, Context/Specification

Here is a NSpec example of the same bowling kata:


class describe_BowlingGame : nspec
{
    Game game;

    void before_each()
    {
        game = new Game();
    }

    void when_all_my_balls_land_in_the_gutter()
    {
        before = () => game.Frames = "00000000000000000000";

        it["should have a score of 0"] = () => game.Score.should_be(0);
    }
}

So Yea...SpecFlow is cool, NSpec is cool

As you do more and more BDD, you'll find that both the xBehave and xSpec flavors of BDD are needed. xBehave is more suited for Acceptance Tests, xSpec is more suited for unit tests and domain driven design.

Relevant Links

rspec vs cucumber (rspec stories)

BDD with Cucumber and rspec - when is this redundant?

link|improve this answer
3  
Thank you for this cool explanation. I'm getting started with BDD and I was getting really confused. I was under the impression that I could simply use MSpec to extract the specifications as acceptance criteria and also that I could write the unit level tests at the same time. However, now that you've shed some light on this, I now know that my confusion is kind of justified. – DavidS Apr 25 '11 at 21:34
1  
This was a very indepth and meaningful answer, between this answer and this article: airasoul.blogspot.com/2011/02/… I can see there's far more value in choosing to do BOTH xSpec and xBehave. That to choose one could dampen the success you reach with BDD. Arguably you could apply xBehave through an xSpec framework (sans true gherkin files), and you could apply xSpec through a xBehave framework, this would probably be alright but increase the amount of work you would do for your unit testing aspects. – Chris Marisic Oct 21 '11 at 13:13
feedback

Check out SpecFlow.

It is a tool inspired by Cucumber that aims at providing a pragmatic and frictionless approach to Acceptance Test Driven Development and Behavior Driven Development for .NET projects today.

VisualStudio integration seems especially promising.

link|improve this answer
feedback

StoryQ looks like a nice alternative to NBehave with its Fluent interface. I would definitely check it out.

link|improve this answer
feedback

I dont think there is a 'winner' really. Other frameworks include SpecUnit.NET project and MSpec is also showing promise with the beginnings of a Gallio adapter. Technically since IronRuby is on the horizon, rSpec may be an option for those prepared to go bleeding edge. NBehave + NSpec might be the eldest framework with the best automation, though I found myself fighting against the overly verbose syntax.

I would check them all out and pick the framework that suits your projects style best. They're all OSS, so its hard to lose, the real benefit is simply in moving to BDD.

link|improve this answer
NSpec (nspec.org) is directly inspired by RSpec. It still has the new car smell :-P. The syntax is very close to what you would see in the Ruby stack. – Amir Apr 6 '11 at 19:26
feedback

There's also Specter, which defines a DSL in Boo to make it all more natural.

link|improve this answer
feedback

I'd generally go in favour of NBehave, combined with MbUnit and whichever DI/mocking frameworks you need. It's a fair comment by Jim Burger that NBehave is very verbose, and I find myself using cut-and-paste at times. Still, it works great - I'm using Gallio's ReSharper plug-in, so I just get an extra window showing. Haven't tried it with ccnet yet, though.

link|improve this answer
feedback

Check this blog post and its comments for inspiring ideas: http://haacked.com/archive/2008/08/24/introducing-subspec.aspx .

link|improve this answer
feedback

Maybe you should take a look at my new framework foor BDD in .NET (early alpha though) : Aubergine

link|improve this answer
feedback

I'm starting on my first outing in BDD with a small application with my team. The tools we are choosing to do the job are: Specflow with Selenium Webdriver for xBehave stories and MSpec with Machine.Fakes.Moq for an automocking container for our xSpec unit tests. With Resharper to be both our story runner and specifications runner due to the integration supported by Specflow and MSpec. Having native integration into visual studio with R# is a key feature for us.

Since our design is all MVC3 we will also be applying the orchestrator separation pattern to our MVC controllers. This will allow us to write specifications directly against the orchestrator. Then for us to write stories directly against our application usage.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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