File tree Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Azure Event Hubs
3
+ categories :
4
+ - cloud
5
+ docs :
6
+ - id : java
7
+ url : https://java.testcontainers.org/modules/azure/#azure-event-hubs-emulator
8
+ maintainer : core
9
+ example : |
10
+ ```java
11
+ Network network = Network.newNetwork();
12
+ AzuriteContainer azurite = new AzuriteContainer("mcr.microsoft.com/azure-storage/azurite:3.33.0")
13
+ .withNetwork(network);
14
+ azurite.start();
15
+
16
+ var eventHubs = new EventHubsEmulatorContainer("mcr.microsoft.com/azure-messaging/eventhubs-emulator:2.0.1")
17
+ .acceptLicense()
18
+ .withNetwork(network)
19
+ .withAzuriteContainer(azurite);
20
+ eventHubs.start();
21
+ ```
22
+ installation : |
23
+ ```xml
24
+ <dependency>
25
+ <groupId>org.testcontainers</groupId>
26
+ <artifactId>azure</artifactId>
27
+ <version>1.20.5</version>
28
+ <scope>test</scope>
29
+ </dependency>
30
+ ```
31
+ description : |
32
+ Azure Event Hubs emulator is designed to offer a local development experience for Azure Event Hubs.
33
+ ---
You can’t perform that action at this time.
0 commit comments