Below you will find pages that utilize the taxonomy term “Testing”
Posts
Testing list contents with xUnit and Assert.Collection
xUnit has become the favorite unit testing tool for many .NET developers. The assertion library
documentation however is quite sparse. Let’s explore the testing of list collections using a lesser
known xUnit assertion,
Assert.Collection
.
Posts
Writing and testing Azure Functions with TypeScript
Azure Functions is a serverless compute solution that integrates with a wide selection of cloud
services to allow developers to build isolated blocks of event-driven code in a cloud-native fashion.
This post demonstrates how an Azure Function written in TypeScript can interact with a database without
any actual database logic in the function itself, and how to write unit tests for these functions.
Posts
Moving from Capybara to Cypress
Cypress makes writing integration tests (or system tests) easier and more fun. This posts shows you the tools needed to add Cypress tests to your Rails application.