Skip to content

Feature: Functionality Tests

Leonardo González Castro edited this page Sep 14, 2020 · 3 revisions

Why do we use Functionality Tests

Right now, this project uses Functionality tests to verify that the application's functionality works as intended. The project's only functionality is to display Razor Pages with a specific information, so the automated tests are aimed to verify that the pages produce a valid response (we don't check the type of response).

You can add your own tests if you add more functionality to the application. If you add a data layer for serializing data, it is very recommended that you create a new project for storing Unit Tests. If you desire, you can also add Integration Tests in order to test the Environment or the Kestrel Server.