diff --git a/tests/acceptance/Support/InMemoryZaakGateway.cs b/tests/acceptance/Support/InMemoryZaakGateway.cs index f8fc104..99b6ce0 100644 --- a/tests/acceptance/Support/InMemoryZaakGateway.cs +++ b/tests/acceptance/Support/InMemoryZaakGateway.cs @@ -48,4 +48,8 @@ public sealed class InMemoryZaakGateway : IZaakGateway public Task ResolveInformatieobjecttypeUrlAsync(string omschrijving, CancellationToken ct = default) => Task.FromResult(ResolvedInformatieobjecttypeUrl); + + public Task> ListZaaktypenAsync(CancellationToken ct = default) + => Task.FromResult>( + [new ZaaktypeSummary("BIG-REGISTRATIE", "BIG-registratie", ResolvedZaaktypeUrl)]); }