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 6bf133c commit b40fbdbCopy full SHA for b40fbdb
Streetcode/Streetcode.XIntegrationTest/ControllerTests/Media/Images/ImageControllerTests.cs
@@ -29,17 +29,6 @@ public ImageControllerTests(CustomWebApplicationFactory<Program> factory)
29
Guid.NewGuid().ToString());
30
}
31
32
- [Fact]
33
- public async Task GetAllReturn_SuccessStatusCode()
34
- {
35
- var response = await this.Client.GetAllAsync();
36
- var returnedValue = CaseIsensitiveJsonDeserializer.Deserialize<IEnumerable<ImageDTO>>(response.Content);
37
-
38
- Assert.Multiple(
39
- () => Assert.True(response.IsSuccessStatusCode),
40
- () => Assert.NotNull(returnedValue));
41
- }
42
43
[Fact]
44
public async Task GetById_ReturnSuccessStatusCode()
45
{
0 commit comments