C#8 Using Declarations With FluentAssertions

Harnessing the power of the C# 8 using declarations to aid with unit test assert clarity

May 5, 2020 · 4 min

Inject JsonSerializerOptions so Don't Repeat Yourself

How many times do you create a private options variable when using json serializer and end up with duplicate code? Let’s take a look at one option to help resolve this.

March 31, 2020 · 2 min

Mocking ILogger with Moq

Looking at how to verify calls to Ilogger based extension methods using Moq.

February 6, 2020 · 9 min

Integration Testing with ASP.NET Core 3.1 - Swapping a Dependency with Moq

Investigating how to write integration tests while swapping out dependencies with mocked instances using Moq

December 23, 2019 · 5 min

Reduce Method Parameter Checking

How to make you method parameter checks not take up a chunk of the method body

December 18, 2019 · 4 min