Files
alt-gen/src/AltGen.API.Tests/EndToEnd/EndToEndTest.cs
T
2025-02-04 14:39:54 -06:00

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;
}