Testing with SQLite
Explore how to test Entity Framework Core applications using SQLite's in-memory database. Understand setting up test contexts, seeding data, verifying data integrity, and modifying data within tests to ensure application correctness and reliability.
We'll cover the following...
We'll cover the following...
Overview
Testing allows us to determine whether our applications work correctly and quickly notifies us if the application’s behavior regresses.
Note: This lesson discusses testing EF Core applications using SQLite, which has an in-memory database feature that is ideal ...