SpecFlow.xUnitAdapter
1.1.0
See the version list below for details.
dotnet add package SpecFlow.xUnitAdapter --version 1.1.0
NuGet\Install-Package SpecFlow.xUnitAdapter -Version 1.1.0
<PackageReference Include="SpecFlow.xUnitAdapter" Version="1.1.0" />
paket add SpecFlow.xUnitAdapter --version 1.1.0
#r "nuget: SpecFlow.xUnitAdapter, 1.1.0"
// Install SpecFlow.xUnitAdapter as a Cake Addin #addin nuget:?package=SpecFlow.xUnitAdapter&version=1.1.0 // Install SpecFlow.xUnitAdapter as a Cake Tool #tool nuget:?package=SpecFlow.xUnitAdapter&version=1.1.0
SpecFlow.xUnitAdapter
SpecFlow.xUnitAdapter is an xUnit adapter for SpecFlow that allows running scenarios without code generation.
Currently supports
- SpecFlow v2.2
- xUnit v2.2 or above
License: Apache (https://github.com/gasparnagy/SpecFlow.xUnitAdapter/blob/master/LICENSE)
NuGet: https://www.nuget.org/packages/SpecFlow.xUnitAdapter
See my blog post (http://gasparnagy.com/2017/04/specflow-without-code-behind-files/) for more information and background, you can also look at the complete example at https://github.com/gasparnagy/SpecFlow.xUnitAdapter/tree/master/sample/MyCalculator or watch the video demo on YouTube.
Donate
If you like this plugin and would like to support developing this or similar plugins, please consider donating the project. (For receiving an invoice for your donation, please contact me upfront.)
Usage
Install plugin from NuGet into your SpecFlow project.
PM> Install-Package SpecFlow.xUnitAdapter
Disable code-behind code generation
To disable the code-behind code generation, you have to REMOVE (set it to empty) the "SpecFlowSingleFileGenerator" "Custom Tool" setting on the file properties of all feature files in Visual Studio.
If you do this, Visual Studio will automatically delete the code behind files and removes them from the project.
Make sure the feature files have a SpecFlowFeature
or SpecFlowEmbeddedFeature
build action.
The SpecFlow.xUnitAdapter currently processes feature files in the folder (or subfolders) of the SpecFlow project assembly (typically in bin\Debug) and when they are embedded into the assembly.
To achieve that, you should change the Build Action
setting of
the feature files to SpecFlowFeature
if you want them to not be
embedded, or SpecFlowEmbeddedFeature
if you want them to be embedded
in the assembly.
Install xUnit Visual Studio adapter
In order to run the tests from the Visual Studio Test Explorer Window, you can install the xUnit Visual Studio adapter.
PM> Install-Package xunit.runner.visualstudio
Limitations
The adapter is currently in BETA and there are some limitations.
- If you use
SpecFlowFeature
: As Visual Studio Test Explorer window only triggers the re-discovery of tests when the output assembly changes, if you only change the feature files, but nothing else in the code, you need to Rebuild the project in order to see the changes. (This is important only if the change is related to the discovered tests, so for example if you change the scenario name or the examples section of a scenario outline.) - The adapter currently does not load the project-level feature file language setting (but assumes
en-US
). - For feature files with
#language
setting, the setting will only be used for data conversions if it is a specific culture (e.g.de-AT
). For neutral languages (e.g.de
), currentlyen-US
is used for conversions.
For diagnosing test discovery errors, you can add the following setting to the App.config
file of the SpecFlow project. With this setting, the test discovery errors are displayed in the Tests
pane of the output window.
<appSettings>
<add key="xunit.diagnosticMessages" value="true"/>
</appSettings>
Release History
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- SpecFlow.xUnit (>= 2.2.1)
- xunit (>= 2.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.2.1 | 13,515 | 5/25/2018 |
1.2.0 | 3,166 | 4/11/2018 |
1.1.0 | 12,500 | 10/10/2017 |
1.0.0 | 14,615 | 4/21/2017 |
1.0.0-pre20170413 | 865 | 4/13/2017 |
See GitHub project page, https://github.com/gasparnagy/SpecFlow.xUnitAdapter/releases