Pragmatic BDD for .NET
0
votes
1answer
32 views
Format a string in SpecFlow using Step Argument Conversion
I wanted to know if it is possible to convert a string to another string using the Step Argument Conversion. Here is an example:
I have steps like:
When in element 'Element' I enter 'value'
Those ...
-2
votes
1answer
25 views
A link to a specflow + Selenium WebDriver Test Framework [closed]
Does anyone know a link to a working Selenium WebDriver + Specflow implementation of a test framework that uses the page object model?
0
votes
0answers
20 views
Specflow Query - I want to use BeforeStep to put a line into a log report and so I need a way to get the name of the current step
Specflow Query -
I want to use BeforeStep to put a line into a log report and so I need a way to get the name of the current step.
0
votes
2answers
29 views
Integrating Spring.NET with Specflow
Can I make use of Spring.NET's base classes (a la AbstractDependencyInjectionSpringContextTests) for loading an application context and performing dependency injection using MSTest?
I'm trying to ...
0
votes
1answer
50 views
Custom SpecFlow TestGeneratorProvider registration causes NullReferenceException at test generation
I'm trying to add my CodedUI test generator plugin in SpecFlow 1.9. I'm trying to use the new plugin registration, since the old type of registration causes all kinds of issues in our solution, since ...
0
votes
2answers
43 views
Boolean parameters for SpecFlow steps
In SpecFlow, I want to check for the presence of a string in a step definition and at the moment I am doing clunky things like this contrived example:
[Given(@"Foo ( bar)?")]
public void ...
0
votes
1answer
33 views
Using single characters as parameters with specflow feature
I am having a real hard time figuring out what is going wrong with my spec flow feature in VS2012 and or VS2010
I am simply unable to use a single character as a parameter in a step if that character ...
0
votes
0answers
32 views
Disabling the generation of parameters with apostrophes in a Specflow scenario
I'm using the Specflow 1.9.2 extension for Visual Studio 2012.
I have an annoying behavior with the apostrophes while defining my scenarios. As soon as I have two apostrophes in a sentence, it's ...
1
vote
2answers
36 views
How to access the values of another feature in Specflow
I have two feature files feature1.feature and feature2.feature. In feature1.feature, I am creating a field value and adding it to FeatureContext.Current. Is there any possibility of accessing that ...
0
votes
2answers
73 views
SpecFlow - HTML output from Visual Studio
I'm trying to generate a nice HTML output for my specflow features from Visual Studio. I have resharper installed and I can run my feature tests but I would like to get an html output of the final ...
2
votes
0answers
69 views
Sending test-fail messages to testers with Specflow in C#
I am writing a test code for QA via Specflow.
For now, the tests are full with asserts (e.g.: Assert.IsTrue(foo, "foo is not true, test could not proceed") ), and fail messages. and when a step or a ...
0
votes
1answer
46 views
SpecRun returning exit code 120 with @ignore tests
Running SpecRun from command line as part of a Continuous Integration setup, and recently an ignored (@ignore) test generated an exit code of 120 when SpecRun completed.
Currently, we break the build ...
2
votes
2answers
83 views
Using SpecFlow as primary Requirements Management Tool
We are planning to use SpecFlow as our primary requirements tool for a web based project. This application has lot of variations of some common objective forms. These variations are primarily per user ...
1
vote
2answers
92 views
How to write specflow against WPF
So, I am working on a new feature for our WPF application. I would like to use BDD especially since the interactions are clearly defined already. I have written specs for web projects, but never a ...
0
votes
1answer
33 views
Intellisense doesnt list the Gherkin statements which are from assembly reference
Intellisense doesnt list the Gherkin statements which are from assembly reference
Eg:
In Project A
"Specific.feature"
Project B - included into A as project reference
"Commons.feature"
When I click ...
0
votes
1answer
104 views
How can I use fake datacontext for Specflow tests
I am writing specflow tests and I would like to run from an in-memory database to get the tests to run faster and have more control over my data.
Currently:
Using the Unit Of Work lifetime for ...
0
votes
3answers
128 views
Cannot get SpecFlow to work in Visual Studio 2010 no matter what I do!!!11
When I add a reference in a Visual Studio 2010 project via NuGet for Specflow 1.9, I cannot add any features no matter what I do. I've restarted VS, restarted my PC, created new projects, etc. Nothing ...
1
vote
0answers
56 views
End a MSTEST test as passing prematurely
Is there a way to end a mstest as passing prematurely and not run the rest of the test code?
Assert.Inconclusive comes the closest, but marks the test as inconclusive, which causes other issues for ...
1
vote
1answer
174 views
Specflow Feature files with same steps causing multiple browser instances to launch
I have at least 3 .feature files in my C# Specflow tests project in which I have the step, for instance:
Given I am at the Home Page
When I first wrote the step in the file Feateure1.feature and ...
1
vote
1answer
59 views
How to filter CreateSet in a table
I'm trying to create a test, that takes a table, Parses the table to create subsets of the table. using CreateSet to use my existing types.
The problem I'm running into is that I would like to ...
1
vote
1answer
201 views
Specflow how to query database using Linq
Context
I am relatively new to .NET and have decided to use BDD in a project. I'm using Specflow for this.
I have created a feature file using the Gherkin format and generated step definitions.
I'm ...
1
vote
2answers
134 views
Using SpecFlow for project architecture (MVP-VM)
I am trying SpecFlow for the first time, and I would like to know whether I am perhaps overthinking the whole concept or worse, completely misusing it for its intended purpose?
I thought to take an ...
1
vote
3answers
122 views
Why is my Scenario Outline not getting called in SpecFlow?
I am having a Scenario Outline as follows:
Scenario Outline: Create Request Custom Export With XML, Comma Delimited, Tab Delimited
Given a user has entered the following data
| Custom Export ...
0
votes
0answers
46 views
SpecFlow to mimic MVC / EF behaviour with Unity
We're handling the EF context problem by having the same instance on a Per-Web-Request basis in Unity.
That works perfectly, but we've now introduced SpecFlow to write BDD specifications.
Most of ...
2
votes
1answer
311 views
[Gherkin/Specflow]: How to write a scenario outline with complex types
I am having a problem with writing a test scenario checking a validity of stations that will be added to a database. Can anyone provide me with an example showing how to write it correctly. Somehow I ...
1
vote
1answer
67 views
When do BDD scenarii become too much specific?
After a very inspiring training about TDD and BDD, I try to implement the methodology, using MSTest and Specflow. But I have a question where I'm stuck to:
I've written Acceptance Tests to validate a ...
0
votes
0answers
65 views
Is it possible to get code coverage with MSTest and Specflow for an MVC app?
I have an MVC project, which references two class libraries. I have a test project which makes use of Specflow. I have a number of features and coded tests, all of which work successfully through the ...
0
votes
2answers
120 views
Why are scenario outlines shown as 'External' in the VS 2012 Test Explorer?
I have a scenario outline (a.k.a scenario template) and I wish to list my tests using the VS 2012's Test Explorer.
The default test grouping is done by the "Project" name - if I stick to it, my tests ...
1
vote
0answers
108 views
Specflow tests in parallel : PNunit - I don't want to have to specify every test in config
I have successfully got pNunit (http://www.plasticscm.com/infocenter/technical-articles/pnunit.aspx) working to run my specflow tests in parallel.
I really don't like the fact I have to specify that ...
-1
votes
1answer
206 views
Error with specflow in visual studio 2012 with <unitTestProvider>
I am using selenium, specflow and nunit to run automated tests with visual studio. The code was working with visual studio 2010. After I installed visual studio 2012, selenium and specflow again (I ...
0
votes
1answer
74 views
Mark tests explicit in SpecFlow
Is there a way to mark a Specflow test with an "Explicit" attribute? I am aware that a test can be marked with the "Ignore" attribute via the use of the special tag @ignore.
1
vote
1answer
224 views
SpecFlow - How to use data driven tests like NUnits TestCaseSource property?
I'm a QA who decided to use SpecFlow for my test automation after some consideration. I think it's brilliant, but missing one feature which I did use often with other test runners such as NUnit - ...
1
vote
1answer
323 views
Using specflow to write acceptance tests for an Mvc4/WebApi website
I've been reading a bit about acceptance testing and I'd like to add some to our web application. We been experiencing a number of regressions recently and I think that this would help us.
We're ...
0
votes
1answer
119 views
Can angle brackets be escaped in Gherkin (SpecFlow) scenario outline steps?
I have a scenario outline in which I need to include literal angle brackets:
Given I have sent "MAIL FROM:<user@example.com>"
When I send "<command>"
Then I should get a ...
0
votes
1answer
52 views
External data source with specflow
I find entering the data in the feature file of specflow very painful specially when it is repetitive and large data. Can we use an external data source like spreadsheet to enter this data and then ...
0
votes
0answers
109 views
SpecFlow ScenarioOutline 'losing' example names
I'm trying to generate documentation (in pdf format) from my specflow feature files. I'm using the gerkin lib found on Nuget to parse the files.
I have some scenario outlines which have 2 example ...
0
votes
0answers
81 views
Why is NAnt ignoring my SpecFlow Scenario Outlines when I use Examples?
I have written some SpecFlow tests using the Scenario Outline and Examples, so I don't have to write the same test repeatedly when the only thing that is changing is the data.
Scenario Outline: When ...
1
vote
1answer
61 views
Can I edit specflow's feature.cs file?
I am trying to create a constructor for Feature.cs file in specflow. But the behaviour is abnormal when I try to debug. Is there a way to create constructor for this feature.cs file? Or we cannot edit ...
0
votes
1answer
81 views
Resolve region manager in wpf
I am trying to do this in a specflow step definition file, so that I can create an object of view model and make method calls to it.
But I get an error saying "Interface cannot be resolved: ...
1
vote
1answer
78 views
Running a login scenario once then multiple scenarios
I want to log in once then run a couple of scenarios (lets say 7 scenarios) before closing the browser.
I used Background instead of having a Given i am loggedin in each scenario but it seems that ...
4
votes
1answer
160 views
Using specflow for WPF in MVVM
I am trying specflow for the first time for a WPF project with MVVM pattern. So, I have repository, controller, view and view model. Repository makes calls to webservice wich hits the database and ...
0
votes
1answer
119 views
BDD Testing Account Login MVC C#
I have an MVC Application (Lang. C#). I am trying to learn how to use BDD Testing with SpecFlow.
I am trying to create a test that 'Asserts' if the correct Username/Password is entered, then a page ...
0
votes
0answers
61 views
How to setup a test database to run?
I have an MVC 4 project that is using EF 5 Code First Migrations. I have Specflow acceptance tests and I'm trying to implement a test setup/teardown procedure that will create a new test database, run ...
0
votes
2answers
182 views
where can I download Techtalk.specflow.dll version 1.9.0 from?
where can I download Techtalk.specflow.dll version 1.9.0 from? As I am not able to install it using Install - package specflow. So, I think manually I need to install this. Can any one point me to ...
1
vote
1answer
140 views
No overload for method 'Given' takes 4 arguments - specflow
I have installed specflow. And by default I get this scenario to add two numbers. when I build the solution, i get these errors. "No overload for method 'Given' takes 4 arguments". What is that I am ...
0
votes
1answer
112 views
Using Expensify Windows Phone Test Framework to trigger an ApplicationBar button
I've just started using the Expensify Windows Phone Test Framework and it seems to fit my requirements for automated testing of Windows Phone 7.1 quite well. I can get it to trigger a normal button ...
3
votes
1answer
176 views
Test project scans my controllers twice
I've created a github repo for this specific post which can be found at https://github.com/CrazyInCode/WebApiNServiceBus
What I'm trying to do is to write tests for my WebApi application. In my specs ...
1
vote
2answers
293 views
Step-by-Step SpecFlow testing for Dummies
Are there any really simple step-by-step examples/tutorials of how Unit Testing and Specflow testing works and can be done?
1
vote
4answers
212 views
Is it possible to run specflow tests pro grammatically?
In my project we had BDD tests which I have written using specflow, nUnit and Watin. I run these tests from visual studio using resharper. Now I want to expose these features and scenarios to non ...
0
votes
1answer
90 views
Binding an attribute to a validator for SpecFlow unit testing
So, I'm working with an MVC app that my team is testing using SpecFlow. I use an implementation of [RequiredIf(prop, val)] that is described here.
However, I found a 'slight' issue - while the ...




