File tree Expand file tree Collapse file tree 4 files changed +56
-0
lines changed Expand file tree Collapse file tree 4 files changed +56
-0
lines changed Original file line number Diff line number Diff line change 28
28
<scope>test</scope>
29
29
</dependency>
30
30
```
31
+ - id : dotnet
32
+ url : https://www.nuget.org/packages/Testcontainers.EventHubs
33
+ maintainer : core
34
+ example : |
35
+ ```csharp
36
+ var eventHubsContainer = new EventHubsBuilder()
37
+ .WithImage("mcr.microsoft.com/azure-messaging/eventhubs-emulator:latest")
38
+ .Build();
39
+ await eventHubsContainer.StartAsync();
40
+ ```
41
+ installation : |
42
+ ```bash
43
+ dotnet add package Testcontainers.EventHubs
44
+ ```
31
45
description : |
32
46
Azure Event Hubs emulator is designed to offer a local development experience for Azure Event Hubs.
33
47
---
Original file line number Diff line number Diff line change 31
31
<scope>test</scope>
32
32
</dependency>
33
33
```
34
+ - id : dotnet
35
+ url : https://www.nuget.org/packages/Testcontainers.ServiceBus
36
+ maintainer : core
37
+ example : |
38
+ ```csharp
39
+ var serviceBusContainer = new ServiceBusBuilder()
40
+ .WithImage("mcr.microsoft.com/azure-messaging/servicebus-emulator:latest")
41
+ .Build();
42
+ await serviceBusContainer.StartAsync();
43
+ ```
44
+ installation : |
45
+ ```bash
46
+ dotnet add package Testcontainers.ServiceBus
47
+ ```
34
48
description : |
35
49
The Azure Service Bus emulator offers a local development experience for the Service bus service.
36
50
---
Original file line number Diff line number Diff line change 31
31
```bash
32
32
go get github.com/testcontainers/testcontainers-go/modules/cassandra
33
33
```
34
+ - id : dotnet
35
+ url : https://www.nuget.org/packages/Testcontainers.Cassandra
36
+ maintainer : core
37
+ example : |
38
+ ```csharp
39
+ var cassandraContainer = new CassandraBuilder()
40
+ .WithImage("cassandra:5.0")
41
+ .Build();
42
+ await cassandraContainer.StartAsync();
43
+ ```
44
+ installation : |
45
+ ```bash
46
+ dotnet add package Testcontainers.Cassandra
47
+ ```
34
48
- id : nodejs
35
49
url : https://node.testcontainers.org/modules/cassandra/
36
50
maintainer : core
Original file line number Diff line number Diff line change 21
21
<scope>test</scope>
22
22
</dependency>
23
23
```
24
+ - id : dotnet
25
+ url : https://www.nuget.org/packages/Testcontainers.Db2
26
+ maintainer : core
27
+ example : |
28
+ ```csharp
29
+ var db2Container = new Db2Builder()
30
+ .WithImage("icr.io/db2_community/db2:12.1.0.0")
31
+ .Build();
32
+ await db2Container.StartAsync();
33
+ ```
34
+ installation : |
35
+ ```bash
36
+ dotnet add package Testcontainers.Db2
37
+ ```
24
38
- id : python
25
39
url : https://testcontainers-python.readthedocs.io/en/latest/modules/db2/README.html
26
40
maintainer : core
You can’t perform that action at this time.
0 commit comments