testcontainers-dotnet
testcontainers-dotnet copied to clipboard
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
## What does this PR do? Adds csharpier. ## Why is it important? * It will no longer be a manual task to check if the formatting is correct. *...
Add Testcontainers module for Valkey, a Redis-compatible in-memory data store. Includes ValkeyContainer implementation with connection string support and tests.
## What does this PR do? Overhaul of `WithResourceMapping()`. The methods with string arguments are deprecated and replaced with the following methods. These signatures are explicit with regard to the...
### Problem Temporalio dev container: https://hub.docker.com/r/temporalio/temporal Temporal: https://temporal.io/ ### Solution Create a new nuget package `Testcontainers.Temporalio` ### Benefit Standard temporalio testcontainer package, helping integration tests using temporal dev server on...
### Problem If an image is not available, e.g. due to a bug, the simplest workaround recommended today is to add .WithImage("docker-registry-url-path-to-image") to the code. ### Solution Ideally, image builders...
### Problem Currently I have to use docker or test containers cloud to run test containers. Because of company policy I'm not allowed to used any local subsystem like wsl...
### Testcontainers version 4.6.0 ### Using the latest Testcontainers version? Yes ### Host OS Mac ### Host arch ARM ### .NET version 9.0.302 ### Docker version ```shell ➜ podman version...
### Problem When I was working on the code, my IDE formatted the code in a way that didn't match the repository's style. ### Solution Format the code with [csharpier](https://github.com/belav/csharpier)...
### Problem It would be nice to have a testcontainer for a minimal Kong API gateway container. I don't know if this is possible. ### Solution Implement a new testcontainer...