SpecFlow is a testing framework that lets you define application behavior in plain, meaningful English text using a simple grammar defined by a language called Gherkin. SpecFlow is a very popular open source framework for Behavior-Driven Development (BDD). SpecFlow democratizes testing to non-technical users by giving them a way of defining tests using the business domain and functional language, which can then be fleshed out as a functional test. In this recipe, we'll learn how SpecFlow tests can be integrated to run in Azure Pipelines.
Running SpecFlow tests using Azure Pipelines
Getting ready
Create a new pipeline using the ASP.NET Core template. In this recipe, we'll be mostly focusing on the Test...