Tests public 5 min read Elevate Your .NET Testing Strategy #4: InMemory vs Repository pattern Pierre Belin Sep 3, 2023 In the ever-evolving landscape of software development, the way we manage data is paramount to performance and efficiency. In the…
Tests public 4 min read Elevate Your .NET Testing Strategy #3: Fixtures separation Pierre Belin Aug 6, 2023 In the previous article, we delved into a critical issue that arises when handling growing complexities in test data creation.…
Tests public 6 min read Elevate Your .NET Testing Strategy #2: InMemoryDatabase Pierre Belin Jul 30, 2023 The development environment in C#/.NET offers a myriad of tools that optimize testing efficiency. Among these are the InMemoryDatabase…
Tests public 4 min read Elevate Your .NET Testing Strategy #1: WebApplicationFactory Pierre Belin Jul 16, 2023 The WebApplicationFactory class in .NET provides a powerful tool for integration testing. It allows you to create a factory for…
Tests public 4 min read xUnit shared context management for C# tests Pierre Belin Feb 23, 2023 Today we will find out how to use the shared context with the xUnit library! Developers must have to pay…
Tests public 6 min read Create efficient C# tests with the xUnit library Pierre Belin Feb 6, 2023 Among all C# test libraries, xUnit is one of the most used by .NET developers. It's simple to use, and…
Tests public 5 min read Compare object values in xUnit C# with Verify Pierre Belin Nov 18, 2022 The most common way to test the values of an object is to use assertions for each property to check…