Tagged Questions
Pragmatic BDD for .NET
30
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!
16
votes
3answers
360 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. ...
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
...
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 ...
10
votes
5answers
4k views
How to learn/teach Gherkin for Cucumber
I'd like to enable the business analysts to be able to write all of their specs for features, scenarios and steps that is Cucumber friendly using Gherkin.
I've read some of the basic info on the ...
9
votes
4answers
594 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
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 ...
9
votes
3answers
496 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
4answers
3k views
Feature-scoped step definitions with SpecFlow?
I'm using SpecFlow to do some BDD-style testing. Some of my features are UI tests, so they use WatiN. Some aren't UI tests, so they don't.
At the moment, I have a single StepDefinitions.cs file, ...
7
votes
2answers
2k views
SpecFlow/Cucumber/Gherkin - Using tables in a scenario outline
Hopefully I can explain my issue clearly enough for others to understand, here we go, imagine I have the two following hypothetical scenarios:
Scenario: Filter sweets by king size and nut content
...
7
votes
1answer
1k views
How do I disable a feature in specflow (Gherkin) without deleting the feature?
I have some SpecFlow features (using the Gherkin syntax) and I would like to temporarily disable the feature to prevent its tests from running?
Is there an attribute I can mark the feature with to do ...
6
votes
1answer
542 views
SpecFlow — Step (Given) with the same regex in different classes not executing independently
I have two classes (class A and B) both marked with [Binding]. Currently I'm using a class per feature. Classes A and B both have a step that looks like this:
[Given(@"an employee (.*) (.*) is a ...
6
votes
2answers
271 views
Cross Process Mocking in ASP.NET
I'm building a REST API using ASP.NET MVC 3. I'm doing it BDD-style using SpecFlow with NUnit as test runner.
Since it's a REST API, testing the Url:s are obviously very important so I want to be ...
6
votes
4answers
1k views
ATDD versus BDD and the proper use of a framework
I am just getting into the concept of BDD and have listened to Scott Bellware's talk with the Herding Code guys. I have been playing around with SpecFlow some and like it pretty well.
I understand ...
6
votes
3answers
2k views
In SpecFlow how can I share data between steps/features?
I have 2 features that use a common 'When' step but have different 'Then' steps in different classes.
How do I access, for example, the ActionResult from my MVC controller call in the When step in my ...
5
votes
2answers
762 views
SpecFlow - The name 'GenerationTargetLanguage" does not exists in the current context - build error
I'm getting this error trying to build a project. It's highlighting words in my feature pages and giving me this error.
Error 1 The name 'GenerationTargetLanguage' does not exist in the current ...
5
votes
2answers
1k views
How to get VS2010 to recognize my mstests generated by SpecFlow?
I have configured Specflow to target the MsTest framework (instead of NUnit) by specifying it like this in the app.config of my 'specs' class library:
<configSections>
<section ...
5
votes
2answers
782 views
How to get Gherkin syntax highlighting for .feature files in Visual Studio?
There's no highlighting for Feature, Scenario, Given, When, Then, etc. keywords by default. Is there a ready made template out there to enable this?
4
votes
2answers
199 views
Are there any non-developer tools to edit gherkin files?
Gherkin syntax files are just plain text so any editor such as notepad can be used. However, one of the more important things we are using this for is to provide tables of sample data. Without good ...
4
votes
2answers
118 views
How to structure acceptance tests and test plans?
I'm considering two different approaches of how to structure my acceptance tests. We have a Silverlight project that calls into a service layer (I own both sides). Because of the way Silverlight is, ...
4
votes
1answer
276 views
Using Specflow to drive outside in development on .NET MVC 3 based projects
I want to do ATDD with TDD and DDD and I want to first discover behaviors (using mocks) of a domain model (ecommerce in my example).
You can imagine that in DDD layering we can have application ...
4
votes
2answers
263 views
Why did the examples of specflow always Uses the UI
I am newbie to BDD trying to understand it.. My understanding about BDD was ..
"Its a Kind of test where the user specfications are used to generate the Ubquitious language from the business"
...
4
votes
2answers
486 views
Specflow step definition classes in different projects
Is it possible to have two step definition classes with first being in one namespace/project, and second in another one?
I have like this:
My test project which I run:
namespace: ABZ.ExcelTest
class ...
4
votes
1answer
606 views
SpecFlow Re-usable step definitions
Is there a way to have SpecFlow reuse Step Definitions?
In other tools I have used a GivenWhenThen base class that contains methods such as
WhenAnOrderIsCreated -- this inits a protected order ...
4
votes
3answers
603 views
Recommended reading to learn Gherkin
I wish to learn Gherkin so I can use it with specflow; I am looking for a document I can read on the train e.g. print out on paper.
All I can find on the web is short disconnected descriptions that ...
4
votes
2answers
612 views
SpecFlow/BDD for Unit Tests?
Seems like the internet doesn't have a definitive answer, or set of principles to help me answer the question. So I turn to the great folk on SO to help me find answers or guiding thoughts :)
...
4
votes
2answers
514 views
How to choose between different test types with SpecFlow, Cucumber or other BDD acceptance test framework?
I am looking at SpecFlow examples, and it's MVC sample contains several alternatives for testing:
Acceptance tests based on validating results generated by controllers;
Integration tests using ...
4
votes
2answers
789 views
SpecFlow vs Cuke4Nuke vs Cucumber+IR
Hi all:
Having a look at BDD frmaeworks and I can't help but wonder which one would suit us better.
I like cucumber because, they have been there doing bdd for a good while(since early 2008) and I ...
3
votes
1answer
69 views
Is there any difference between specflow's .msi installer and its nuget package?
On specflow's own instalation guide it says that the only way to install it is using the .msi installer and most of the tutorials I've read on the subject tell me to download and install said file but ...
3
votes
2answers
420 views
How to do block comments in Gherkin?
In gherkin syntax (used by Cucumber and SpecFlow, I can comment out a line by prefixing it with '#'
Is there any way to block-comment multiple lines?
3
votes
1answer
298 views
Why should we use coded ui when we have Specflow?
We have utilized Specflow and WhatIn for acceptance tests at my current project. The customer wants us to use Microsoft coded-ui instead. I have never tested coded ui, but from what I've seen so far ...
3
votes
2answers
99 views
possible to use specflow to write non-bdd procedural tests?
specflow looks like a solution I want my team to consider using. My manager, however, isn't real fond of BDD-style tests. Because of the nice integration of specflow with visual studio, I'm wondering ...
3
votes
2answers
189 views
BDD with Specflow and mocking browser behavior
I've started using SpecFlow to try to write specs for one of my ASP.NET MVC web application. I came across two basic questions for which I didnt find any answer in google.
Is there a way to imitate ...
3
votes
1answer
450 views
MSpec and SpecFlow when to use which? What are the advantages/disadvantages of either?
I am trying to get started with BDD and found a view blog posts about MSpec and SpecFlow. I'm currently not quite sure when I would use which and what the advantages/disadvantages of either framework ...
3
votes
3answers
296 views
BDD testing framework
We are a Microsoft shop, have a reasonably mature technology stack and have very skilled .net resources. We have been using TDD since we started and now are venturing into the BDD space. Our work is ...
3
votes
1answer
218 views
Where can I find out how best to use Gherkin tags?
I've been using SpecFlow for my acceptance tests. This uses Gherkin (the DSL Cucumber uses). It includes an interesting feature called "tags". I can see the practicalities of its use, but am not ...
3
votes
4answers
846 views
Default Values Specflow Step Definitions
I'm starting out in the world of SpecFlow and I have come across my first problem.
In terms of keeping my code DRY I'd like to do the following:
Have two scenarios:
Given I am on a product page
And ...
3
votes
2answers
1k views
BDD with ASP.NET MVC using SpecFlow and MSpec
I am learning BDD with ASP.NET MVC and based upon a post from Steve Sanderson understand that BDD can be at least of the following two types:
Individual code units: in which case you’ll probably ...
3
votes
1answer
455 views
BDD of UI Components with WatiN and SpecFlow
My question is focused on if my setup is currently following a best practice approach regarding BDD with UI acceptance testing. I'm using WatiN with SpecFlow to build my UI acceptance tests and I'm ...
3
votes
1answer
200 views
How can I unit test or integration test for 404 - Not Found?
My team is writing a content-managed web-hosting application in ASP.Net MVC 2 with the S#arp Architecture framework. I'm using SpecFlow and WatiN for integration testing, and NUnit for unit testing.
...
3
votes
3answers
698 views
Specflow with Visual Studio express
I have used Specflow in Visual Studio 2010 Pro at work but would like to use it on my personal projects. Unfortunately I only have VS210 Express.
I have not managed to get Specflow working in VS2010 ...
3
votes
1answer
1k views
Specflow and Visual Studio 2010 Coded UI Test integration
Is there a way to integrate Visual Studio 2010 Coded UI Test with Specflow?
I am not sure if these 2 can hook somehow.
I have this idea to Create a Data-Driven Coded UI Tests by using some Coded UI ...
3
votes
1answer
425 views
Strong coupling between steps in gherkin specs
I am using specflow to specify my app, and it just saved me from doing really bad stuff, so I really like it :-)
However I have a problem with with the coupling between steps:
For instance since I am ...
2
votes
2answers
125 views
Has anyone done BDD with CQRS using SpecFlow/StoryQ
Does any one have experience utilizing ready frameworks as specflow with CQRS in BDD.
I liked the approach of Mark Nijhof, however I have already been using SpecFlow for other projects. Can anyone ...
2
votes
2answers
54 views
Using Deleporter for cross process mocking
We are trying to use Steven Sandersons Deleporter tool for cross process mocking:
http://blog.stevensanderson.com/2010/03/09/deleporter-cross-process-code-injection-for-aspnet/
We are experiencing ...
2
votes
1answer
75 views
BDD 'Given' step description and implementation
How do you usually describe and implement 'Given' step for scenario?
High level state description OR explicit data definitions?
Fill database or stub repository?
High level state description
...
2
votes
2answers
103 views
Sharing a common set of Examples across multiple Scenario Outlines in Specflow
Is is possible to share a common set of examples across multiple scenario outlines in Specflow without duplicating the set of examples for each outline?
e.g. excuse the noddy example, but here the ...
2
votes
3answers
225 views
SpecFlow wrongly using NUnit
I've just (today) tried SpecFlow for the first time. I'm playing about by creating a new class library in VS2010 Pro and adding a SpecFlow Feature Definition file.
Thing is, the integration doesn't ...
2
votes
1answer
56 views
What is the best method for setting up data for ATDD style automation?
I assume that most implementations have a base set of known data that gets spun up fresh each test run. I think there are a few basic schools of thought from here..
Have test code, use application ...
2
votes
2answers
324 views
How can I repeat steps in a Specflow Scenario Outline
In a nutshell, what I need is to create a Scenario Outline with a step that is repeatable without having to type it in using multiple AND's as I am currently doing below:
Scenario Outline: outline
...