Naveen Kumar Singh
Naveen is a professional agile coach and has been working independently for a long time in the Asia... Read more
Naveen is a professional agile coach and has been working independently for a long time in the Asia... Read more
ATDD is a development methodology that promotes good collaboration between the business and technology group. Many similar methodologies work more or less the same way like Behavior Driven Development (BDD), Example Driven Development (EDD) and Specification by Examples, etc.
ATDD is extended to TDD (Test Driven Development) that emphasizes developers, testers, and business collaboration. ATDD encompasses acceptance testing but highlights writing acceptance tests before writing code. Acceptance Test-Driven Development (ATDD) is a test-first approach.
One of the main purposes of ATDD is to remove ambiguity from the requirement by writing examples through the collaboration of 3 amigos. Why writing examples by the collaboration of 3 amigos? Because these amigos usually think differently about the same requirement and to align their thought better to write examples.
Gherkin is the language that many tools understand like Cucumber, SpecFlow and Behave, etc. It is a Business Readable, Domain Specific Language that lets you describe software’s behavior without detailing how that behavior is implemented. You can read more about Gherkin here.
Gherkin serves two purposes — documentation and automated tests. The third is a bonus feature — when it yells in red it’s talking to you, telling you what code you should write. 10 main keywords help in writing features and acceptance tests/scenarios/examples.
Unlock your potential as a Certified Scrum Developer® through our comprehensive CSD certification training course. Gain hands-on experience and valuable skills to excel in Agile software development.
Register TodayLet’s assume we wanted to develop a Carpool application to share our rides with other people within the organization to reduce traffic and save money.
We need the following features in our application.
The above features look big we need to further split those to have smaller items for faster delivery and feedback. There are various ways to split big features into smaller releasable functionalities like splitting based on WORKFLOW, OPERATION, BUSINESS RULES, DATA TYPES, SCENARIOS, etc. I will not be covering those here but will take one example to explain ATDD here.
Let’s assume, we need the below functionalities to complete the “Share Ride” feature.
Still, it looks big but there are possibilities to split those further like below for “Publish New Ride”
Let’s take 1st functionality as an example to write our 1st feature.
Feature: Quick Post
To share my car
As a car owner
I want to publish it on an intranet with details like source, destination, time, email, phone no
Scenario: Employee enter valid ride details to share
Given Employee "Naveen" wanted to submit a source, destination and time as "Kammanahalli", "Hebbal" and "5.30 pm"
And "Naveen" email is "naveenhome@gmail.com" and phone no is "+91 9810547500"
When "Naveen" click on "Share"
Then Ride get added and "Naveen" get a message "Ride is shared." with the "OK" button
And "Naveen" get redirected to the home page by clicking on the "OK" button
And "Naveen" can see his ride on top on "Home" page
Scenario: Employee enter ride details to share without email id
Given Employee "Naveen" wanted to submit a source, destination and time as "Kammanahalli", "Hebbal" and "5.30 pm"
And "Naveen" email is " " and phone no is "+91 9810547500"
When "Naveen" click on "Share"
Then "Naveen" get a message "Please add valid email Id"
And Ride not get saved
I will be using Visual Studio 2015 with C# and will use the class library project to start with. Will demonstrate how to practice while creating MVC applications with Selenium and Coded UI in upcoming blogs.
Open Visual Studio and go to Tools -> Extensions and Updates and search “SpecFlow for Visual Studio 2015”
After installation, restart visual studio and create your project by clicking “New Project”. I am going to name it “Carpool”.
Add SpecFlow and Nunit reference to your project via “Manage NuGet Packages” like below.
Add first feature file to Project -> Add -> New Items and you will see the option to create a new feature file like below and name it QuickPost.feature. Remove all default content from the feature file and copy the above-written feature.
Right-click on the feature file and you will get the option “Generate Step Definitions”. You will get below the screen and click “Generate” here. It will ask you to save your step file in the default location (the same folder where you have a feature file). Save it at the default location and you will find a file name “QuickPostSteps.cs” in your solution explorer.
Unlock the door to success in technology. Start your journey to becoming a sought-after DevOps Engineer in 2024 with our expert-led roadmap.
Explore Today!To test our scenario, we need to create step definitions that bind the statements in the test scenario to the application code. SpecFlow automatically generates a skeleton for the automation code that we can extend as necessary. Steps are not one to one binding and it uses regular expression. That means if there are similar steps with the same statement in another feature file or another scenario then it will reuse. Below ATDD lifecycle explains steps involved in practising ATDD methodology wherein some steps required business involvement and the rest can be performed by the development team.
Go to Test -> Window -> Test Explorer and you will find your tests listed in test explorer. If your test not showing that means you need to install an extension called “Nunit 3 Test Adaptor”. To install it go to Tools -> Extensions and Updates and search “Nunit 3 Test Adaptor”. After installation, restart visual studio and build your solution to see your tests in test explorer.
I will use Nunit for assertion and will demonstrate how to pass the scenario by adding minimum code just to demonstrate the capability of SpecFlow.
Add a model class called “Ride.cs”
Add another Business Logic class “RideBLL.cs”
Make changes in the steps file like below: -
Build your solution again, go to Test Explorer, and click on Run All. The test will pass successfully like below.
Try it out yourself. If stuck anywhere then reach out to me. I will be happy to help you.
Naveen is a professional agile coach and has been working independently for a long time in the Asia Pacific. He works with the software development team and product team to develop awesome products based on empirical processes.
WhatsApp UsWe will get back to you soon!
For a detailed enquiry, please write to us at connect@agilemania.com
We will get back to you soon!
For a detailed enquiry, please write to us at connect@agilemania.com