Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.08 KB

File metadata and controls

43 lines (30 loc) · 1.08 KB

Getting started with Testcontainers for .NET

This is sample code for the Getting started with Testcontainers for .NET guide.

1. Setup Environment

Make sure you have .NET 7 and a compatible Docker environment installed.

For example:

$ dotnet --list-sdks
7.0.104 [C:\Program Files\dotnet\sdk]
$ docker version
...
Server: Docker Desktop 4.12.0 (85629)
 Engine:
  Version:          20.10.17
  API version:      1.41 (minimum version 1.12)
  Go version:       go1.17.11
...

2. Setup Project

  • Clone the repository
git clone https://github.com/testcontainers/tc-guide-getting-started-with-testcontainers-for-dotnet.git
cd tc-guide-getting-started-with-testcontainers-for-dotnet/TestcontainersDemo
  • Open the tc-guide-getting-started-with-testcontainers-for-dotnet/TestcontainersDemo project in your favorite IDE.

3. Run Tests

Run the command to run the tests.

$ dotnet test

The tests should pass.