Resolve all using mine
Mocking authorization tokens with WireMock.NET
, Author: Cezary Piątek
C# code snippets for Resharper and Rider
, Author: Cezary Piątek
The fastest way to create WireMock.NET mappings
, Author: Cezary Piątek
Mocking GraphQL queries with WireMock.NET
, Author: Cezary Piątek
GraphQL is a query language for APIs that allows clients to request exactly what they need, making data retrieval more efficient than traditional REST APIs. It supports three different types of client-server interaction: queries, mutations and subscriptions. When you start integrating a GraphQL API as a consumer in your application, it’s likely that you’ll need to write automated tests to ensure that the integration works correctly. In this blog post, I will show you how to mock GraphQL queries using WireMock.NET.
... Read More
Common Setup and Teardown in dotnet tests without test framework magic
, Author: Cezary Piątek
In this blog post I describe the typical problems caused by the usage of Setup
and Teardown
method in dotnet tests and how those problems can be solved by using only C# language features.