Category: QA

Test Double

Test Double

Introduction In a well-designed application,  SUT will not do everything that it required instead it will delegate to one or more collaborators to get things done. Managing these dependencies is one of the hard task and unit test focus on SUT, not other collaborators otherwise it will break the FIRST property. Fortunately, we have Test…

Read More Read More

MS Test V2 Introduction

MS Test V2 Introduction

Introduction MS test is a unit testing automation framework which facilitates to write unit tests in .Net framework. It is the primary unit testing framework for Visual Studio. MS Test provides various elements to write the unit tests. The parameter test was one of the important feature that missed in MS Test V1 and MS…

Read More Read More

Basics of Unit Testing

Basics of Unit Testing

Introduction Software testing is a process to ensure whether a software application meets the specified requirements or not and it also identifies the defects to ensure that product is defect/fault free to produce the quality product. A quality product brings the more satisfaction and trusts from the customers. A study says, fixing a defect in…

Read More Read More

How to create an environment generic request template with Postman?

How to create an environment generic request template with Postman?

Postman Collection and Environments zip Introduction Postman is one of the most popular REST API clients which provides a complete workflow for API development. In this article, we are going to discuss the Postman Environment and its benefits. When we want to manage API requests for different environments then we need to create separate postman…

Read More Read More