Posts for ASP.NET Core

ASP.NET Core API Unit Tests

ASP.NET Core API Controllers are just classes, which means they can be unit tested.

Keep reading
ASP.NET Core integration tests

Integration tests ensure that an app's components function correctly at a level that includes the app's supporting infrastructure, such as the database, file system, and network. ASP.NET Core supports integration tests using a unit test framework with a test web host and an in-memory test server.1

Keep reading
ASP.NET Core seeding the database

It can be useful to seed the database with initial data. In this post we'll take a look at one way of achieving this.

Keep reading
Back To posts