Tagged Questions

BDD stands for Behavior Driven Development. It is related to, and derived from, TDD (Test Driven Development) and ATDD (Acceptance Test Driven Development), and differs in its language and vocabulary, preferring example, scenario or specification to test.

learn more… | top users | synonyms

72
votes
9answers
10k views

What is the most mature BDD Framework for .NET?

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 ...
60
votes
7answers
11k views

Practicing BDD with python

Which are the most advanced frameworks and tools there are available for python for practicing Behavior Driven Development? Especially finding similar tools as rspec and mocha for ruby would be great. ...
55
votes
7answers
12k views

What are the differences between BDD frameworks for Java?

What are the pros and cons of each Behavior Driven Development (BDD) framework for Java? I've found some of them here, for example. Does it make sense to use a BDD framework if I already use a ...
53
votes
14answers
7k views

TDD/BDD screencast/video resources

I've recently finished watching the Autumn of Agile screencasts and I'm looking for more material of similar scope. Basically, I'm looking for screencasts that present TDD/BDD process while developing ...
33
votes
8answers
5k views

What are the primary differences between TDD and BDD?

Test Driven Development has been the rage in the .NET community for the last few years. Recently, I have heard grumblings in the ALT.NET community about BDD. What is it? What makes it different from ...
32
votes
9answers
4k views

Is there a sample Rails application with a number of cucumber stories?

I'm trying to really understand Cucumber stories. I get it, but I'm really slow writing them. I think if I saw a good fleshed out application, I'd get closer to where I want to be. There are some ...
31
votes
4answers
5k views

When to use rspec let()?

I tend to use before blocks and set instance variables in then and use them across my examples, but recently I came upon let(). According to rspec docs, it is used to ... to define a memoized ...
31
votes
6answers
4k views

Cuke4Nuke or SpecFlow?

I am trying to decide if I should use Cuke4Nuke or SpecFlow. What are the pro/cons of each? Opinions on which is better and why. Thanks!
28
votes
13answers
1k views

How to run unit-tests in all browsers?

I've never used Selenium but I guess it's for simulating user interaction in all browsers. That's like integration tests. But how do you test your js libraries/frameworks (unit testing) on all the ...
25
votes
3answers
855 views

How to avoid anemic domain models, or when to move methods from the entities into services

I have a common scenario that I am looking for some guidance from people more experienced with DDD and Domain Modeling in general. Say I start out building a blog engine, and the first requirement is ...
21
votes
3answers
2k views

JavaScript BDD: Vows & Kyuri Vs. Jasmine

I was going to go with Vows and Kyuri, but then I found out about Jasmine. Which do you recommend? Vows or Jasmine? Is there a Cucumber implementation that works with Jasmine?
21
votes
12answers
2k views

Eat, Sleep and Breathe Unit Testing/TDD/BDD

I do write unit tests while writing APIs and core functionalities. But I want to be the cool fanboy who eats, sleeps and breathes TDD and BDD. What's the best way to get started with TDD/BDD the right ...
20
votes
9answers
3k views

Speeding up RSpec tests in a large Rails application

I have a Rails application with over 2,000 examples in my RSpec tests. Needless to say, it's a large application and there's a lot to be tested. Running these tests at this point is very inefficient ...
18
votes
6answers
2k views

Best way to implement Repository Pattern?

I've been exploring BDD/DDD and as a consequence trying to come up with a proper implementation of the Repository pattern. So far, it's been hard to find a consensus over the best way to implement ...
18
votes
1answer
3k views

BDD and MSpec, am I approaching this right?

Just wondering if any MSpec and BDDers out there could give me there thoughts on my first attempt at writing a MSpec spec. Now I've left the specs uncoded, but my context has code in it, I just want ...
17
votes
3answers
366 views

Outside-in BDD (with Specflow)

I'm new to BDD, but I found it very interesting and want to develop my next project using BDD. After googling and watching screencasts I still have lots of questions about BDD in real life. 1. ...
16
votes
3answers
9k views

Rhino Mocks - Stub .Expect vs .AssertWasCalled

Disclosure: I am a Rhino Mocks n00b! OK, I know there has been a lot of confusion over the new AAA syntax in Rhino Mocks, but I have to be honest, from what I have seen so far, I like. It reads ...
15
votes
1answer
493 views

Zend Framework integration with Behat BDD

Anyone had used Behat with Zend Framework? Any examples on how to use both?
15
votes
5answers
3k views

BDD and TDD for node.js?

What is used for BDD and TDD with node.js? I'm used to use Cucumber + RSpec. What's a good combo for node.js? thanks
15
votes
8answers
4k views

What's the state of TDD and/or BDD in PHP?

How widespread, supported, developed is testing in the PHP world? On par with Java? Up there with Ruby/Rails? I Googled and found that testing frameworks exist but I'm wondering if they're widely ...
13
votes
2answers
297 views

Is there a workable approach to use Test Driven Development in a COBOL application?

Has anyone come across any workable approaches to implementing Test Driven Development (and potentially Behaviour Driven Development) in/for COBOL applications? An ideal solution would enable both ...
13
votes
5answers
1k views

How do I get SpecFlow to expect an exception?

I'm using SpecFlow, and I'd like to write a scenario such as the following: Scenario: Pressing add with an empty stack throws an exception Given I have entered nothing into the calculator ...
13
votes
5answers
206 views

TDD: “Test Only” Methods

Looking for some practical advice here and any experiences people have had in a similar situation. We use a BDD/TDD sytle methodology for building our software (quite a large/complex application) The ...
13
votes
8answers
2k views

How to use bdd naming style with Resharper 4.5?

I just upgraded to Resharper 4.5 and now see that all my BDDish test methods are marked as not conforming to the naming standard. My naming convention is like this: public void ...
13
votes
5answers
3k views

What is the Path to Learn BDD on Ruby On Rails?

I want to start BDD on Ruby On Rails what should I learn? I don't know anything about BDD, RSpec or Cucumber. What is the best way to learn? Tutorials? Something that cover things like 'What behavior ...
12
votes
3answers
3k views

How do I verify jQuery AJAX events with Jasmine?

I am trying to use Jasmine to write some BDD specs for basic jQuery AJAX requests. I am currently using Jasmine in standalone mode (i.e. through SpecRunner.html). I have configured SpecRunner to load ...
12
votes
4answers
1k views

RSpec Stories and Specs: When to use what?

So I want to start using RSpec stories, but I am not sure where writing controller, model and view specs fit in. For example, you have the story "Logging in" with "User provides wrong password" ...
11
votes
3answers
766 views

Good Cucumber examples in the wild?

I've tried Cucumber for a few projects a couple of years ago and am looking to give it another go. I don't really need another "Beginning Cucumber" article. Instead, I'd like to see some actual uses ...
11
votes
2answers
792 views

Rails 3, RSpec 2.5: Using should_receive or stub_chain with named scopes

I use Rails 3.0.4 and RSpec 2.5. In my controllers I use named scopes heavily, for example @collection = GuestbookEntry.nonreplies.bydate.inclusive.paginate( :page => params[:page], ...
11
votes
5answers
2k views

BDD in Objective-C

I have recently started to learn Objective-C and write my tests using OCUnit that comes bundled with Xcode. I'm a long time Ruby programmer and I'm used to RSpec and Cucumber - nice BDD frameworks. ...
11
votes
8answers
2k views

Are BDD tests acceptance tests?

Or, if you have BDD tests, do you need something like Fitnesse?
10
votes
3answers
418 views

Is it possible to use DDD and BDD together?

I like the middle-out development that is achieved with DDD. Development is driven by domain, the most solid part of application. We don't depend on infrastructure, persistence and presentation. That ...
10
votes
6answers
737 views

TDD and BDD Differences

I honestly don't see the difference between BDD and TDD. I mean, both are just tests if what is expected happens. I've seen BDD Tests that are so fleshed out they practically count as TDD tests, and ...
10
votes
5answers
3k views

SpecFlow / BDD Examples

Just looking for some examples of BDD/SpecFlow - ideally a project so I can see how to use spec flow on big projects where multiple features my reference the same steps etc. I've read a few blogs ...
10
votes
6answers
5k views

How to run SpecFlow tests in Visual Studio 2010?

Trying to get SpecFlow running with a fresh VS2010 Professional install. Created a new console application and added references to NUnit and SpecFlow. Created a SpecFlow feature. The .feature with the ...
9
votes
2answers
1k views

How to get parent node in Capybara?

I'm working with many jQuery plugins, that often create DOM elements without id or other identification properties, and the only way to get them in Capybara (for clicking for example) - is to get ...
9
votes
4answers
596 views

Should BDD scenarios include actual test data, or just describe it?

We've come to a point where we've realised that there are two options for specifying test data when defining a typical CRUD scenario: Option 1: Describe the data to use, and let the implementation ...
9
votes
3answers
497 views

Handling Async With Specflow for Silverlight

The Silverlight Unit test Framework defines a process for dealing with Async calls (derive test class from Microsoft.Silverlight.Testing.SilverlightTest, add Asynchronous attribute, use EnqueueXXX ...
9
votes
12answers
2k views

What's the best way to implement BDD/TDD in .NET 2.0?

I'm looking to add a testing suite to my application, however I can't move to the newer testing frameworks for .NET 3.5. Does anyone have a suggestion about good testing frameworks to use?
8
votes
2answers
276 views

When using BDD specifications in a .NET project, why would one use both SpecFlow *and* MSpec?

I repeatedly hear BDD enthusiasts advocate using both SpecFlow and MSpec in the same project. Apparently SpecFlow is more suitable for outside-in/UI tests. (For example, web tests which simulate ...
8
votes
4answers
306 views

Setting up proper testing for Django for TDD

I've been ignoring the need to test my project for far to long. So I spent more than a day looking for ways to implement tests for my current apps and trying to get some TDD going for new apps. I ...
8
votes
6answers
297 views

How can I decide what to test manually, and what to trust to automated tests?

We have a ton of developers and only a few QA folks. The developers have been getting more involved in qa throughout the development process by writing automated tests, but our QA practices are mostly ...
8
votes
5answers
171 views

how to test or describe endless possibilities?

Example class in pseudocode: class SumCalculator method calculate(int1, int2) returns int What is a good way to test this? In other words how should I describe the behavior I need? test1: ...
8
votes
5answers
233 views

Why doesn't every class in the .Net framework have a corresponding interface?

Since I started to develop in a test/behavior driven style, I appreciated the ability to mock out every dependency. Since mocking frameworks like Moq work best when told to mock an interface, I now ...
8
votes
5answers
4k views

Cucumber for PHP application

Is it possible to use Cucumber outside Rails? I'd like to start using it for testing some of my PHP applications, but I really don't know how to start. Probably the easiest way would be creating a ...
7
votes
2answers
106 views

How to apply TDD/BDD methodology for creating Excel files from C# using data from an Oracle database

I am starting a new project where I have to create and manipulate multiple Excel files based on some data in an Oracle databse. I want to learn and apply TDD/BDD methodologies in this project to ...
7
votes
2answers
1k views

BDD for C# NUnit

I've been using a home brewed BDD Spec extension for writing BDD style tests in NUnit, and I wanted to see what everyone thought. Does it add value? Does is suck? If so why? Is there something better ...
7
votes
1answer
290 views

Are there any Rails plugins that can generate models, views, etc using Cucumber scenarios?

I am planning on creating a plugin that will generate app code based on Cucumber scenarios, but I want to make sure I am not reinventing the wheel here. Is anyone aware of a plugin that works with ...
7
votes
3answers
271 views

Must an actor of a user story be a human being?

User stories are traditionally written as expression "As a [User Type] I want [feature] so that [some benefit]". In the books and online resources [User Type] typically correspond to a role of a human ...
7
votes
5answers
466 views

What does regression test means?

Could anyone explain the word regression test in an understandable way?

1 2 3 4 5 13