Update WireMockProtoFileResolver and add tests for ProtoBufUtils (#1252)

* Update WireMockProtoFileResolver and add tests for ProtoBufUtils

* .
This commit is contained in:
Stef Heyenrath
2025-02-01 22:27:32 +01:00
committed by GitHub
parent 29bf9b42f8
commit a02ff47db6
6 changed files with 100 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ public readonly struct IdOrTexts
public string? Id { get; }
/// <summary>
/// The Text.
/// The Texts.
/// </summary>
public IReadOnlyList<string> Texts { get; }
@@ -41,7 +41,7 @@ public readonly struct IdOrTexts
}
/// <summary>
/// When Id is defined, return process the Id, else process the Texts.
/// When Id is defined, process the Id, else process the Texts.
/// </summary>
/// <param name="id">Callback to process the id.</param>
/// <param name="texts">Callback to process the texts.</param>