@@ -86,7 +86,7 @@ public void Reader_Is_Enabled(JsonApiQueryStringParameters parametersDisabled, b
8686 [ InlineData ( "filter" , "any(null,'a','b')" , "Attribute 'null' does not exist on resource type 'blogs'." ) ]
8787 [ InlineData ( "filter" , "any('a','b','c')" , "Field name expected." ) ]
8888 [ InlineData ( "filter" , "any(title,'b','c',)" , "Value between quotes expected." ) ]
89- [ InlineData ( "filter" , "any(title,'b' )" , ", expected." ) ]
89+ [ InlineData ( "filter" , "any(title)" , ", expected." ) ]
9090 [ InlineData ( "filter[posts]" , "any(author,'a','b')" , "Attribute 'author' does not exist on resource type 'blogPosts'." ) ]
9191 [ InlineData ( "filter" , "and(" , "Filter function expected." ) ]
9292 [ InlineData ( "filter" , "or(equals(title,'some'),equals(title,'other')" , ") expected." ) ]
@@ -146,6 +146,7 @@ public void Reader_Read_Fails(string parameterName, string parameterValue, strin
146146 [ InlineData ( "filter" , "contains(title,'this')" , null , "contains(title,'this')" ) ]
147147 [ InlineData ( "filter" , "startsWith(title,'this')" , null , "startsWith(title,'this')" ) ]
148148 [ InlineData ( "filter" , "endsWith(title,'this')" , null , "endsWith(title,'this')" ) ]
149+ [ InlineData ( "filter" , "any(title,'this')" , null , "any(title,'this')" ) ]
149150 [ InlineData ( "filter" , "any(title,'this','that','there')" , null , "any(title,'that','there','this')" ) ]
150151 [ InlineData ( "filter" , "and(contains(title,'sales'),contains(title,'marketing'),contains(title,'advertising'))" , null ,
151152 "and(contains(title,'sales'),contains(title,'marketing'),contains(title,'advertising'))" ) ]
0 commit comments