TickSpec 1.1.0
See the version list below for details.
dotnet add package TickSpec --version 1.1.0
NuGet\Install-Package TickSpec -Version 1.1.0
<PackageReference Include="TickSpec" Version="1.1.0" />
paket add TickSpec --version 1.1.0
#r "nuget: TickSpec, 1.1.0"
// Install TickSpec as a Cake Addin #addin nuget:?package=TickSpec&version=1.1.0 // Install TickSpec as a Cake Tool #tool nuget:?package=TickSpec&version=1.1.0
Project Description
A lightweight Behaviour Driven Development (BDD) framework for .NET that'll fit how you want to test.
Describe behaviour in plain text using the Gherkin business language, i.e. Given, When, Then.
Easily execute the behaviour against matching F# 'ticked' methods, or attribute-tagged C# or F# methods.
Run via your normal test runners (xUnit, NUnit or standalone), set breakpoints in the scenarios and go.
Example video: http://www.youtube.com/watch?v=UuTL3nj9fIE
Installation
Simply reference TickSpec via NuGet or Paket, download the assembly or build the project from source.
- The binary should work cleanly on any NET 4.0 or later environment.
- To run NUnit-based examples, please ensure that you have installed the
NUnit 2 Test Adapter
tool via Tools|Extensions And Updates - xUnit.NET examples should work after running
./build.bat
. - The TickSpec solution file works with Visual Studio 2015 & 2017.
- Historically, Silverlight was supported; this support and the related examples were removed in 2017 (but remain in the commit history for the archeologically inclined)
Feature specification (Plain text)
Feature: Refunded or replaced items should be returned to stock
Scenario 1: Refunded items should be returned to stock
Given a customer buys a black jumper
And I have 3 black jumpers left in stock
When he returns the jumper for a refund
Then I should have 4 black jumpers in stock
Step definitions (F#)
type StockItem = { Count : int }
let mutable stockItem = { Count = 0 }
let [<Given>] ``a customer buys a black jumper`` () = ()
let [<Given>] ``I have (.*) black jumpers left in stock`` (n:int) =
stockItem <- { stockItem with Count = n }
let [<When>] ``he returns the jumper for a refund`` () =
stockItem <- { stockItem with Count = stockItem.Count + 1 }
let [<Then>] ``I should have (.*) black jumpers in stock`` (n:int) =
let passed = (stockItem.Count = n)
Debug.Assert(passed)
Step definitions (F# without mutable field)
type StockItem = { Count : int }
let [<Given>] ``a customer buys a black jumper`` () = ()
let [<Given>] ``I have (.*) black jumpers left in stock`` (n:int) =
{ Count = n }
let [<When>] ``he returns the jumper for a refund`` (stockItem:StockItem) =
{ stockItem with Count = stockItem.Count + 1 }
let [<Then>] ``I should have (.*) black jumpers in stock`` (n:int) (stockItem:StockItem) =
let passed = (stockItem.Count = n)
Debug.Assert(passed)
Step definitions (C#)
public class StockStepDefinitions
{
private StockItem _stockItem;
[Given(@"a customer buys a black jumper")]
public void GivenACustomerBuysABlackJumper()
{
}
[Given(@"I have (.*) black jumpers left in stock")]
public void GivenIHaveNBlackJumpersLeftInStock(int n)
{
_stockItem = new StockItem() { Count = n };
}
[When(@"he returns the jumper for a refund")]
public void WhenHeReturnsTheJumperForARefund()
{
_stockItem.Count += 1;
}
[Then(@"I should have (.*) black jumpers in stock")]
public void ThenIShouldHaveNBlackJumpersInStock(int n)
{
Debug.Assert(_stockItem.Count == n);
}
}
Advanced features
Resolving referenced types (beta)
As shown in Step definitions (F# without mutable field), TickSpec also allows one to request additional parameters along with the captures from the regex holes in the step name as per typical Gherkin based frameworks. Such additional parameters can be fulfilled via the following mechanisms:
Instances returned from Step Method return values: This involves generating and stashing an instance in one of the preceding steps in the scenario. Typically this is achieved by returning the instance from the Step Method. Whenever a step has a return value, the the value is saved under it's type (the return type of the Step Method controls what the type is). There can be only one value per type stashed per scenario run. When a parameter is being resolved, TickSpec first attempts to resolve from this type-to-instance caching Dictionary.
Resolving dependencies: If an instance cannot be located in the type-to-instance cache based on a preceding step having stashed the value, TickSpec will attempt to use the 'widest' constructor (the one with the most arguments) of the required type to instantiate it. Any input arguments to the constructor are all resolved recursively using the same mechanism. Any constructed instances are also cached in the type-to-instance cache, so next time it will return the same instance.
The lifetime of instances is per-scenario:- Each scenario run starts an empty type-to-instance cache, and at the end of the scenario the cache gets cleared. Moreover, if any instance is IDisposable
, Dispose
will be called.
See the example projects DependencyInjection
and FunctionalInjection
for typical and advanced examples of using this mechanism.
Custom type resolver (beta)
While the typical recommended usage of TickSpec is to keep the step definitions simple and drive a system from the outside in the simplest fashion possible, in some advanced cases it may be useful to provide a custom type resolver. This can be achieved by set
ting the StepDefinitions.ServiceProviderFactory
property. This factory method is used once per scenario run to establish an independent resolution context per scenario run. The IServiceProvider
instance is used to replace the built in instance construction mechanism (see Resolving dependencies in the previous section: Resolving referenced types). If the IServiceProvider
implementation yielded by the factory also implements IDisposable
, Dispose
is called on the Service Provider context at the end of the scenario run.
See the CustomContainer
example project for usage examples - the example demonstrates wiring of Autofac including usage of lifetime scopes per scenario and usage of the xUnit 2+ Shared Fixtures to correctly manage the sharing/ifetime of the container where one runs xUnit Test Classes in parallel as part of a large test suite.
Contributing
Contributions are welcome, particularly examples and documentation. If you'd like to chat about TickSpec, please use the the gitter channel.
For issues or suggestions please raise an Issue. If you are looking to extend or change the core implementation, it's best to drop a quick note and/or a placeholder PR in order to make sure there is broad agreement on the scope of the change / nature of the feature in question before investing significant time on it; we want to keep TickSpec powerful, but minimal.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. 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. |
-
- FSharp.Core (>= 3.1.2.5)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on TickSpec:
Package | Downloads |
---|---|
TickSpec.Xunit
TickSpec integration with Xunit. TickSpec is a lightweight Behaviour Driven Development (BDD) framework for .Net. Describe behaviour in plain text using the Gherkin business language, i.e. Given, When, Then. Easily execute the behaviour against matching F# 'ticked' methods (let ``tick method`` () = true) or attributed C# or F# methods. |
|
TickSpec.NUnit
Describe behaviour in plain text using the Gherkin business language, i.e. given, when, then. Easily execute the behaviour against matching F# tick methods (let ``tick method`` () = true) or attributed C# or F# methods. |
GitHub repositories
This package is not used by any popular GitHub repositories.