Add some more RequestMessageBodyMatcherTests (#112)

This commit is contained in:
Stef Heyenrath
2018-03-28 08:18:33 +02:00
parent 3369501506
commit bdb79aec95
2 changed files with 149 additions and 6 deletions

View File

@@ -147,12 +147,10 @@ namespace WireMock.Serialization
return newDictionary;
}
private static string[] Map<T>([CanBeNull] IEnumerable<Func<T, bool>> funcs)
{
return funcs?.Select(Map).Where(x => x != null).ToArray();
}
//private static string[] Map<T>([CanBeNull] IEnumerable<Func<T, bool>> funcs)
//{
// return funcs?.Select(Map).Where(x => x != null).ToArray();
//}
private static string Map<T>([CanBeNull] Func<T, bool> func)
{