Questions tagged [specflow]
Behavior Driven Development for the .NET framework
18 questions
1
vote
1
answer
106
views
Behavior Driven Development - How to test "notification" step
I'm implementing the steps of a feature with Specflow and I have a problem with one of the steps.
Here is the Scenario :
Scenario: Cancel a yearly running subscription after legal retractation
...
0
votes
3
answers
871
views
How to arrange expected result model for test in a cleaner,readable way when the model contains many properties
In one of my projects I saw wrapping the expected results as a static variable in non static class. The reason for doing so is to make the code more readable, so that the massive expected result model ...
1
vote
3
answers
240
views
Should an imperative style be used if the parameters drive the outcome?
I have done a lot of BDD reading since the beginning of the weekend. At the moment I am reading about the imperative style v the declarative style. The imperative style is often described as an anti ...
0
votes
2
answers
163
views
Testing a class that only has one field only that is an ID number
I am trying to incorporate BDD into the teams working practices to make interactions with Business Analysts more effective. I recently asked this question: Should I pass an ID number from the feature ...
0
votes
3
answers
1k
views
Should I pass an ID number from the feature file?
Say I have a domain object like this:
public class Customer
{
private Guid _id;
private string _name;
private Address _address;
public Customer (Guid id, string name, Address address)...
0
votes
2
answers
154
views
How to identify test result as "ignore" (not successful or unsuccessful) in process of execution?
We use Selenium webdriver + SpecFlow for testing our Web application.
For some functionality, everything is clear.
But imagine the situation: some questions arrive to Web user from external system he ...
5
votes
3
answers
5k
views
What advantages are there to using a BDD test tool like SpecFlow over simple unit test tools like MSTest?
I'm looking at BDD test tools, like SpecFlow, MSpec or NSpec, and I can't see from the examples what advantages they offer over simple unit test tools like MSTest.
As far as I can see, when creating ...
0
votes
1
answer
154
views
SpecFlow scenarios - covering different websites
At the moment my specification files are along the lines of:
Scenario Outline: Do stuff
Given I am on the "<website>"
And I have entered "red" into the search field
When I do ...
-1
votes
4
answers
870
views
Should a test scenario prepare all of its required data? [closed]
Consider a BDD scenario with some given steps that refer to existence of a set of data in database. For example consider the following scenario steps:
Given there is an active customer
When as and ...
2
votes
1
answer
1k
views
Side-by-side Functional and Acceptance Testing (SpecFlow)
Edit: I have found a closely related question: StackOverflow
This question is not about the differences between functional and acceptance tests! Almost all the info I could find on the web just ...
2
votes
2
answers
182
views
Which style to use for features that are not directly driven by humans when using BDD Gherkin language?
Should they be written same way as human workflows, first person "I have entered..." style language etc.? Is the user effectively a gender-less "AI"?
7
votes
2
answers
3k
views
Gherkin: What is a reasonable number of scenarios per feature?
I'm keen to get thoughts on a reasonable number of scenarios per feature in Gherkin.
At what point do you start to thing about re-organising the feature to keep the number of scenarios at a ...
-2
votes
1
answer
414
views
SpecFlow/Cucumber - Documenting available steps [closed]
Our company is looking at implementing BDD in our .NET application. Specifically, SpecFlow.
We can foresee a large number of common steps being created ('Given a customer', etc), so what methods have ...
7
votes
3
answers
890
views
BDD in .NET - Chicken or Egg or..?
Predicate: I'm brand new to BDD / TDD, but I've done my homework.
I'm trying to put everything I've read / learned into practice with VS2010, SpecFlow and NUnit. Things are working, but it's quickly ...
5
votes
2
answers
809
views
How abstract should you get with BDD
I was writing some tests in Gherkin (using Cucumber/Specflow). I was wondering how abstract should I get with my tests.
In order to not make this open-ended, which of the following statements is ...