Xbehave 2.0.0-beta001-build-488
See the version list below for details.
dotnet add package Xbehave --version 2.0.0-beta001-build-488
NuGet\Install-Package Xbehave -Version 2.0.0-beta001-build-488
<PackageReference Include="Xbehave" Version="2.0.0-beta001-build-488" />
paket add Xbehave --version 2.0.0-beta001-build-488
#r "nuget: Xbehave, 2.0.0-beta001-build-488"
// Install Xbehave as a Cake Addin #addin nuget:?package=Xbehave&version=2.0.0-beta001-build-488&prerelease // Install Xbehave as a Cake Tool #tool nuget:?package=Xbehave&version=2.0.0-beta001-build-488&prerelease
A BDD/TDD framework based on xUnit.net and inspired by Gherkin. Allows features and scenarios to be written directly in code rather than mapping to external feature files. Works seamlessly with xUnit.net tooling.
Learn more about Target Frameworks and .NET Standard.
-
- xunit (>= 2.0.0-beta5-build2785 && < 3.0.0)
GitHub repositories (4)
Showing the top 4 popular GitHub repositories that depend on Xbehave:
Repository | Stars |
---|---|
config-r/config-r
Write your .NET configuration files in C#
|
|
adamralph/liteguard
🔒 The most simple, unambiguous, and lightweight .NET guard clause library.
|
|
jamesfoster/DeepEqual
An extensible deep comparison for .NET
|
|
adamralph/bau
The C# task runner
|
Version | Downloads | Last updated |
---|---|---|
2.0.0-rc002-build543 | 145 | 4/18/2015 |
2.0.0-rc001-build541 | 164 | 3/26/2015 |
2.0.0-beta008-build523 | 65 | 3/21/2015 |
2.0.0-beta007-build521 | 49 | 3/19/2015 |
2.0.0-beta006-build519 | 130 | 3/17/2015 |
2.0.0-beta005-build515 | 50 | 3/17/2015 |
2.0.0-beta004-build500 | 128 | 12/24/2014 |
2.0.0-beta003-build498 | 56 | 12/24/2014 |
2.0.0-beta002-build494 | 77 | 12/13/2014 |
2.0.0-beta001-build-488 | 73 | 12/10/2014 |
1.1.0 | 7,588 | 3/16/2014 |
1.0.0 | 3,557 | 10/9/2013 |
0.17.0 | 54 | 10/3/2013 |
0.16.0 | 97 | 9/3/2013 |
0.15.0 | 592 | 6/4/2013 |
0.14.0 | 53 | 11/7/2012 |
0.13.0 | 49 | 10/3/2012 |
0.12.0 | 47 | 7/25/2012 |
0.11.0 | 51 | 7/9/2012 |
0.10.0 | 49 | 5/21/2012 |
0.9.0 | 46 | 4/26/2012 |
0.8.0 | 50 | 4/11/2012 |
0.7.0 | 55 | 2/27/2012 |
=== New ===
- Based on xUnit 2.0 (currently pre-release) and supporting all new xUnit.net 2.0 features.
- Support for all platforms supported by xUnit.net 2.0 (Desktop .NET 4.5+, Windows 8.1+ (Universal)*, Windows Phone 8 (Silverlight)*, Windows Phone 8.1+ (Universal)*, MonoTouch*, MonoAndroid*, Xamarin.iOS*, Portable Libraries (supporting Profile259), ASP.NET vNext*).
*Work in progress - not yet supported in the current pre-release package.
=== Changed ===
- Object disposal and Teardown is no longer performed in a separate test. Failure will be communicated in the same way that xUnit.net 2.0 communicates failure to run the After() method of a BeforeAfterTestAttribute, i.e. an extra failed test will be shown in addition to the usual tests which are generated from the scenario.
=== Removed ===
- Given(), When(), Then(), And() and But(). Use f() or _() instead.
- Timeouts have been removed under the same rationale used for xUnit.net.
- Isolated steps have been removed as this is a rarely (if ever) used feature that adds considerable implementation overhead.
- Object disposal without passing a context object to Using() (already deprecated in 1.x).
- An undocumented feature which allows global continuation of step execution when certain types of step fail.
- An undocumented feature which allows omission of arguments from scenario names in test output.
* beta-001: Initial beta.