using BigRegister.Domain.Applications; namespace BigRegister.Tests.Domain; public class ApplicationRuleTests { // The published lifecycle (ADR-0002) must name exactly these five tags, in this // order — ToStatusDto's string literals must keep matching Enum.ToString(), and Ingediend/ // MeerInfoGevraagd (unreachable until a later change adds the behandelaar transition) stay defined. [Fact] public void AanvraagStatusTag_covers_the_published_lifecycle() { Assert.Equal( new[] { "Ingediend", "InBehandeling", "MeerInfoGevraagd", "Goedgekeurd", "Afgewezen" }, Enum.GetNames()); } }