chore: initial commit

This commit is contained in:
Stevan Freeborn
2025-02-04 14:39:54 -06:00
commit a1a682916e
45 changed files with 1736 additions and 0 deletions
@@ -0,0 +1,7 @@
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;
}