Creating Pipeline in Jenkins Creating pipeline in Jenkins to run the features created in NoCodeBDD is a fairly straight forward process. This article shows how this is done step by step. Assumption Before setting up Jenkins, please ensure that following set-up are already done in the Jenkins box: NoCodeBDD is installed and is running on … Continue reading Integrate NoCodeBDD and Jenkins to run BDD
Running NoCodeBDD
Running NoCodeBDD is fairly straight forward, as shown in the steps given below. Before following these steps, for better results please ensure your system has 8GB RAM. Windows If you have .exe, then double click on the file and just follow the steps. It should install NoCodeBDD automatically. If you have downloaded a jar file, … Continue reading Running NoCodeBDD
BDD and TDD in Agile
There is a general misconception that behavior-driven development (BDD) is an extension of test-driven development (TDD) and that when BDD is used, the team doesn't have to use TDD and vice versa. In this article, we will be looking at how BDD and TDD can be used in an agile project, the difference between BDD … Continue reading BDD and TDD in Agile
BDD instead of User Stories
Most of us are familiar with user stories. The structure of a user story is typically something like: As a [type of user], I want to [perform some task] so that I can [achieve some goal]. However, articulating what is required in a natural language is one of the hardest things in software development, since … Continue reading BDD instead of User Stories
BDD Unit Testing?
Disclaimer to start with: the title of this blog is a bit of a misnomer. The reason for intentionally titling this blog incorrectly is to clarify and hopefully make readers/users understand why "BDD Unit Testing" is inherently contradictory. The term Unit Testing relates to test-driven development (TDD), which is different from behavior-driven development (BDD). Though … Continue reading BDD Unit Testing?
What are TDD and BDD?
Test-driven development (TDD) is a software development process in which the developer writes a test for a given function, then writes enough functional code just for the test scenarios to pass. Then, if required, the developer refactors the code to make the code better. Behavior-driven development (BDD) is an Agile Software Development practice, which encourages … Continue reading What are TDD and BDD?
How Behavior-Driven Development (BDD) Helps You Overcome Muri, Mura and Muda
I am a huge fan of Toyota when it comes to process and lean manufacturing. They invented and brought in many of the lean production processes, which were then adopted by many other car manufacturing companies across the world. One of the key goals of the Toyota Production System (TPS) is eliminating 3 key issues: … Continue reading How Behavior-Driven Development (BDD) Helps You Overcome Muri, Mura and Muda
Cucumber Vs NoCodeBDD
I have been working with Behavior Driven Development (BDD) using Cucumber for several years. I am a huge fan of BDD and the benefits it brings to a project. I wouldn't embark on a project without using BDD. The main benefits of using BDD is, it improves the collaboration between cross functional members of the … Continue reading Cucumber Vs NoCodeBDD
BDD Vs TDD: What’s the difference? (+ Examples and Video)
This article addresses main differences between Behavior Driven Development (BDD) and Test Driven Development (TDD) with real-world examples and code snippets. It is a common mis-conception that Behavior Driven Development is an extension of Test Driven Development and this article explains how it is different and how both can be used together What is TDD? … Continue reading BDD Vs TDD: What’s the difference? (+ Examples and Video)
How to Assert values from Multiple Rows from Database in BDD Automation?
Using NoCodeBDD, you can easily assert values across multiple rows of a SQL result. For an example, let's look at the following table, which is a result of a SQL query. If your requirement is to select all users with Age 32 and to assert the First Name and Last Name from both rows, then … Continue reading How to Assert values from Multiple Rows from Database in BDD Automation?