From b812f42912dc8821ed772cf4a5916059d796b961 Mon Sep 17 00:00:00 2001 From: Niek Otten Date: Fri, 24 Jul 2026 11:07:40 +0200 Subject: [PATCH] fix(test): implement ListZaaktypenAsync in the acceptance InMemoryZaakGateway (refs #130) --- tests/acceptance/Support/InMemoryZaakGateway.cs | 4 ++++ 1 file changed, 4 insertions(+) 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)]); }