Skip to content

Barsonax/TestExamplesDotnet

Repository files navigation

TestExamplesDotnet

.NET

What is this?

Whenever I start or join a new project one of the first things I want are good tests. These tests should be easy to setup, fast to run and give good confidence that the application is actually working. This is important to have a productive developer feedback loop. The example tests in this repo have been setup with that in mind.

Currently the example tests in this repo are aimed at ASP .NET core with entityframework for persistence.

What this is not

This is not an example repository showing you how to run end to end tests against a real environment. Every example you see here will run completely locally. This is both an advantage (higher reliability, much faster) as a disadvantage (less real than the real thing). Things like network latency will play out differently in a real environment so keep this in mind.

Prerequisites

  • .NET
  • Docker

Notable features:

  • No manual setup required, dotnet test is all you need to run. This not only makes it easy for developers to run the tests but also simplifies the CI as you can see in the github workflow file. This is made possible with the magic of TestContainers and some custom code.
  • Uses a real database so you can be quite confident that your app is actually working. You won't run into differences between an in memory database and a real database here.
  • Databases are pooled and cleaned between runs with Respawn. This way migrations only have to be run once which saves alot of time. Furthermore tests run in parallel. After migrations are done and depending on how fast your app is a test might finish in less than 100ms.

Just how fast is this setup? Just look at this test run from Api.PostgreSql.Nunit:

How to use

I decided not to turn this into a nuget package for now. Depending on if you are using NUnit or xUnit copy the code that you need to your project. For instance if you are using PostgreSql then merge the code from TestExamplesDotnet and TestExamplesDotnet.PostgreSql into your test project then use Examples to see how to setup your test project. I do suggest you flatten the code that you need into a single project to keep things simpler.

If you can choose which testframework to use then I suggest going with NUnit for the following reason:

  • Higher level of parallelism due to NUnit running individual test cases in parallel while xUnit is limited to running classes in parallel. This will lead to significantly shorter test suite run times.

As such most examples will be for NUnit but the setup is very similar.

Examples

Examples contain example projects which will show you how to setup the tests for various types of applications. For instance for postgresql you can find examples for NUnit and xUnit. There's also a browser test example using Playwright.

About

Showing how you can easily setup fast and easy to run more complex tests such as api tests or browser tests in .NET

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages