Spec is a small testing framework that implements **bdd** style testing for .net. inspired by [mochajs](http://mochajs.org/) and [jasmine](http://jasmine.github.io/).The library takes a minimal approach to define your tests and allows for using a *Arrange-Act-Assert* pattern in your unit testing; The Spec TDD library works by creating any class that inherits from the `Spec` base type. Create a constructor, start describing the behavior and expectations for your tests.You can have *describe* blocks, *context* blocks, and *it* specifications.
Remember to install the Nuget Package from the nuget gallery. |