public void ArrayIndexExpression_RootLength() { Run("$[($.length)]", JsonPathWith.Array(jv => JsonPathRoot.Length())); }
public void ArrayFilterExpression_RootLengthNotEqualsValue() { Run("$[?($.length != 1)]", JsonPathWith.Array(jv => JsonPathRoot.Length() != 1)); }
public void Length_Root() { _Run(JsonPathWith.Array(jv => JsonPathRoot.Length()), "$[($.length)]"); }