Skip to content

Commit

Permalink
Updating instructions in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
chadly committed Aug 22, 2017
1 parent d43b3af commit 9260fcb
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions readme.md → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@ Some of the design goals include:
* Use natural C# constructs to control things such as BDD contexts and concerns. For example, the context of the specification is defined in the class constructor and the concern for the fixture is defined by its namespace.
* Don't force me to inherit from any base class to get BDD style tests working.There is an interface `ISpecification` with one method `Observe()` to accomplish this. A `Specification` base class is also provided for convenience.

See here for a [full introduction](http://chadly.net/2009/04/bdd-with-xunit-net/)
See here for a [full introduction](https://www.chadly.net/bdd-with-xunit-net/)

[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/chadly/xunit-bdd-extensions/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
## How to Use

Install via [nuget](https://www.nuget.org/packages/xUnit.BDD/)

```
dotnet add package xUnit.BDD
```

## Building Locally

After cloning, run:

```
dotnet restore
dotnet build
```

To run the test cases:

```
cd test
dotnet test
```

0 comments on commit 9260fcb

Please sign in to comment.