Files
register-referentie/services/bff/Bff.Api/Bff.Api.csproj
Edwin van den Houdt 8c1a00a207 test(bff): /health returns 200 Healthy (refs #28)
Add the BFF Api/Tests skeleton (.NET 10, ASP.NET Core minimal API, xUnit
+ WebApplicationFactory) and a failing test asserting GET /health returns
200 with a Healthy body. The endpoint does not exist yet — the test fails
with NotFound, establishing red before the implementation.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-03 13:35:22 +02:00

10 lines
211 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>