Files
raceplanner/tests/integration/backend/UnitTest1.cs
Denis Urs Rudolph 3421818d41 Add integration test infrastructure
- Create backend integration test project with xUnit
- Add required packages: TestHost, Mvc.Testing, EF InMemory, FluentAssertions
- Add project reference to backend API
- Create IntegrationTestBase class with WebApplicationFactory setup
- Install Supertest for HTTP integration testing
2026-04-08 20:23:48 +02:00

11 lines
116 B
C#

namespace backend.Tests.Integration;
public class UnitTest1
{
[Fact]
public void Test1()
{
}
}