RejectOnMatch (wip)

This commit is contained in:
Stef Heyenrath
2018-05-06 10:40:42 +02:00
parent e7319a202a
commit ca5056aed3
10 changed files with 35 additions and 7 deletions

View File

@@ -78,10 +78,10 @@ namespace WireMock.Net.Tests.Matchers
public void JsonPathMatcher_IsMatch_Object_Exception_Mismatch()
{
// Assign
var matcher = new JsonPathMatcher("xxx");
var matcher = new JsonPathMatcher("");
// Act
double match = matcher.IsMatch("");
double match = matcher.IsMatch("x");
// Assert
Check.That(match).IsEqualTo(0);