blob: 32b928a9fb9c8d6e80f004fc091a67e4473ba0b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using FluentAssertions;
using System.Threading.Tasks;
using Timeline.Models.Http;
using Timeline.Tests.Helpers;
using Xunit;
namespace Timeline.Tests.IntegratedTests
{
public class UnknownEndpointTest : IntegratedTestBase
{
[Fact]
public async Task UnknownEndpoint()
{
using var client = await CreateDefaultClient();
await client.TestGetAssertErrorAsync("unknownEndpoint", errorCode: ErrorCodes.Common.UnknownEndpoint);
}
}
}
|