We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c95903f commit 0a6ee87Copy full SHA for 0a6ee87
test/Cnblogs.Architecture.IntegrationTests/DaprTests.cs
@@ -14,11 +14,13 @@ public DaprTests(DddWebTestFactory factory)
14
}
15
16
[Fact]
17
- public async Task Dapr_subscribe_endpoint_is_ok()
+ public async Task Dapr_SubscribeEndpoint_OkAsync()
18
{
19
+ // Act
20
var response = await _httpClient.GetAsync("/dapr/subscribe");
- response.StatusCode.Should().Be(HttpStatusCode.OK);
21
22
+ // Assert
23
+ response.StatusCode.Should().Be(HttpStatusCode.OK);
24
var responseText = await response.Content.ReadAsStringAsync();
25
responseText.Should().Contain("pubsub");
26
0 commit comments