Removing duplicate test
This commit is contained in:
parent
0074061990
commit
dbfd5b65c9
|
|
@ -7,20 +7,6 @@ namespace Elsa.Workflows.ComponentTests.Scenarios.Activities.Http;
|
||||||
|
|
||||||
public class HttpEndpointTests(App app) : AppComponentTest(app)
|
public class HttpEndpointTests(App app) : AppComponentTest(app)
|
||||||
{
|
{
|
||||||
|
|
||||||
[Fact]
|
|
||||||
public async Task BasicHttpEndpoint_Get_ReturnsExpectedResponse()
|
|
||||||
{
|
|
||||||
// Arrange
|
|
||||||
var client = WorkflowServer.CreateHttpWorkflowClient();
|
|
||||||
|
|
||||||
// Act
|
|
||||||
var response = await client.GetStringAsync("test/basic");
|
|
||||||
|
|
||||||
// Assert
|
|
||||||
Assert.Equal("Basic HttpEndpoint Test Response", response);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public async Task BasicHttpEndpoint_UnsupportedMethod_ReturnsNotFound()
|
public async Task BasicHttpEndpoint_UnsupportedMethod_ReturnsNotFound()
|
||||||
{
|
{
|
||||||
|
|
@ -89,7 +75,6 @@ public class HttpEndpointTests(App app) : AppComponentTest(app)
|
||||||
// without hanging or requiring additional triggers
|
// without hanging or requiring additional triggers
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public async Task HttpEndpoint_ConcurrentRequests_ProcessesAllSuccessfully()
|
public async Task HttpEndpoint_ConcurrentRequests_ProcessesAllSuccessfully()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue