This commit is contained in:
Stef Heyenrath
2025-08-31 12:51:33 +02:00
parent 5b43a4f341
commit 4fd3ee1dfd
4 changed files with 19 additions and 20 deletions
@@ -338,7 +338,7 @@ public class JsonPartialWildcardMatcherTests
[InlineData("{ \"test.nested\":\"value\" }", "{\"test\":{\"nested\":\"value1\"}}")]
[InlineData("{\"test\":{\"test1\":\"value\"}}", "{\"test\":{\"test1\":\"value1\"}}")]
[InlineData("[{ \"test.nested\":\"value\" }]", "[{\"test\":{\"nested\":\"value1\"}}]")]
public void JsonPartialWildcardMatcher_IsMatch_StringInputWithInvalidMatch(string value, string input)
public void JsonPartialWildcardMatcher_IsMatch_StringInputWithInvalidMatch(string value, string? input)
{
// Assign
var matcher = new JsonPartialWildcardMatcher(value);