* @param fieldName The name of the field in the JSON node which will be evaluated
* @param matcher The matcher to use for evaluation
* @return The new matcher
*/
public static TypeSafeMatcher<JsonNode> hasJsonValue(String fieldName, Matcher<?> matcher) {
return new HasJsonValue(fieldName, matcher);
}