Property-based BDD Examples with SpecFlow and FsCheck
by Gáspár on November 2, 2016
BDD (Behavior-driven development) is a software development process focusing on active collaboration, which illustrates and automates the requirements using key examples of the problem domain. In BDD, the formalized examples use a natural language-based DSL driven by the Given/When/Then keywords. At the same time, property-based testing (PBT) uses abstract formulas to declare expectations for the […]
BDD Addict Newsletter September 2016
by Gáspár on October 4, 2016
The monthly dose for BDD addicts… In September #bdd, #specflow and #cucumber stories from Gojko Adzic, Anna Dolatowska, Steve Baker, Jim Holmes & Dirk Rombauts.
BDD Addict Newsletter August 2016
by Gáspár on September 6, 2016
The monthly dose for BDD addicts… In August #bdd, #specflow and #cucumber stories from Eugen (Baeldung), The Cucumber team, Chris Parsons, John Ferguson Smart & Gaspar Nagy.
SpecFlow tips: Customizing dependency injection with Autofac
by Gáspár on August 18, 2016
SpecFlow creates and disposes the instances of your step definition classes automatically. It also allows injecting dependencies to these classes through a feature called context injection. This article shows how this injection can be configured to use the popular Autofac dependency injection framework.