Understanding the Different Types of Automated Test
Learn about different types of automated tests in .NET.
We'll cover the following...
A robust suite of automated tests helps us deliver software faster without sacrificing its quality. There are various types of test, though each type has its own benefits and challenges. We are going to understand the different types of test and the benefits they bring to a single-page application.
The following diagram shows the three different types of test:
In the following subsections, we will examine each type of test, along with their pros and cons.
Unit tests
Unit tests verify that individual and isolated parts of an app work as expected. These tests ...