7 lines
296 B
C#
7 lines
296 B
C#
namespace AltGen.API.Tests.EndToEnd;
|
|
|
|
public class EndToEndTest(AppFactory factory, TestConfiguration config) : IClassFixture<AppFactory>, IClassFixture<TestConfiguration>
|
|
{
|
|
protected HttpClient Client { get; } = factory.CreateClient();
|
|
protected TestConfiguration Config { get; } = config;
|
|
} |