@@ -16,7 +16,7 @@ public static IEnumerable<object[]> Parameters()
1616
1717 yield return new object [ ] {
1818 "Age eq 1" ,
19- new [ ] { TestData . Users [ "Jane " ] , TestData . Users [ "Harry" ] }
19+ new [ ] { TestData . Users [ "Apple " ] , TestData . Users [ "Harry" ] , TestData . Users [ "Doe "] }
2020 } ;
2121
2222 yield return new object [ ] {
@@ -30,23 +30,23 @@ public static IEnumerable<object[]> Parameters()
3030 } ;
3131
3232 yield return new object [ ] {
33- "firstname eq 'John' or Age eq 3 " ,
34- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Doe" ] , TestData . Users [ " Egg"] }
33+ "firstname eq 'John' or Age eq 33 " ,
34+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Egg" ] }
3535 } ;
3636
3737 yield return new object [ ] {
3838 "Age eq 1 and firstName eq 'Harry' or Age eq 2" ,
39- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Apple" ] , TestData . Users [ " Harry"] }
39+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Harry" ] }
4040 } ;
4141
4242 yield return new object [ ] {
4343 "Age eq 1 or Age eq 2 or firstName eq 'Egg'" ,
44- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Jane " ] , TestData . Users [ "Apple " ] , TestData . Users [ "Harry " ] , TestData . Users [ "Egg" ] }
44+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Apple " ] , TestData . Users [ "Harry " ] , TestData . Users [ "Doe " ] , TestData . Users [ "Egg" ] }
4545 } ;
4646
4747 yield return new object [ ] {
48- "Age ne 3 " ,
49- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Jane" ] , TestData . Users [ "Apple" ] , TestData . Users [ "Harry" ] , TestData . Users [ "NullUser" ] }
48+ "Age ne 33 " ,
49+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Jane" ] , TestData . Users [ "Apple" ] , TestData . Users [ "Harry" ] , TestData . Users [ "Doe" ] , TestData . Users [ " NullUser"] }
5050 } ;
5151
5252 yield return new object [ ] {
@@ -56,36 +56,36 @@ public static IEnumerable<object[]> Parameters()
5656
5757 yield return new object [ ] {
5858 "Age ne 1 and firstName contains 'a'" ,
59- new [ ] { TestData . Users [ "Apple " ] }
59+ new [ ] { TestData . Users [ "Jane " ] }
6060 } ;
6161
6262 yield return new object [ ] {
6363 "Age ne 1 and firstName contains 'a' or firstName eq 'Apple'" ,
64- new [ ] { TestData . Users [ "Apple" ] }
64+ new [ ] { TestData . Users [ "Jane" ] , TestData . Users [ " Apple"] }
6565 } ;
6666
6767 yield return new object [ ] {
68- "Firstname eq 'John' and Age eq 2 or Age eq 3 " ,
69- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Doe" ] , TestData . Users [ " Egg"] }
68+ "Firstname eq 'John' and Age eq 2 or Age eq 33 " ,
69+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Egg" ] }
7070 } ;
7171
7272 yield return new object [ ] {
73- "(Firstname eq 'John' and Age eq 2) or Age eq 3 " ,
74- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Doe" ] , TestData . Users [ " Egg"] }
73+ "(Firstname eq 'John' and Age eq 2) or Age eq 33 " ,
74+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Egg" ] }
7575 } ;
7676
7777 yield return new object [ ] {
78- "Firstname eq 'John' and (Age eq 2 or Age eq 3 )" ,
78+ "Firstname eq 'John' and (Age eq 2 or Age eq 33 )" ,
7979 new [ ] { TestData . Users [ "John" ] }
8080 } ;
8181
8282 yield return new object [ ] {
83- "(Firstname eq 'John' and Age eq 2 or Age eq 3 )" ,
84- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Doe" ] , TestData . Users [ " Egg"] }
83+ "(Firstname eq 'John' and Age eq 2 or Age eq 33 )" ,
84+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Egg" ] }
8585 } ;
8686
8787 yield return new object [ ] {
88- "(Firstname eq 'John') or (Age eq 3 and Firstname eq 'Egg') or Age eq 1 and (Age eq 2)" ,
88+ "(Firstname eq 'John') or (Age eq 33 and Firstname eq 'Egg') or Age eq 1 and (Age eq 2)" ,
8989 new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Egg" ] }
9090 } ;
9191
@@ -96,7 +96,7 @@ public static IEnumerable<object[]> Parameters()
9696
9797 yield return new object [ ] {
9898 "age lt 3" ,
99- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Jane " ] , TestData . Users [ "Apple " ] , TestData . Users [ "Harry " ] }
99+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Apple " ] , TestData . Users [ "Harry " ] , TestData . Users [ "Doe " ] }
100100 } ;
101101
102102 yield return new object [ ] {
@@ -106,22 +106,22 @@ public static IEnumerable<object[]> Parameters()
106106
107107 yield return new object [ ] {
108108 "age lte 2" ,
109- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Jane " ] , TestData . Users [ "Apple " ] , TestData . Users [ "Harry " ] }
109+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Apple " ] , TestData . Users [ "Harry " ] , TestData . Users [ "Doe " ] }
110110 } ;
111111
112112 yield return new object [ ] {
113113 "age gt 1" ,
114- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Apple" ] , TestData . Users [ "Doe "] , TestData . Users [ "Egg" ] , TestData . Users [ "NullUser" ] }
114+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Jane " ] , TestData . Users [ "Egg" ] , TestData . Users [ "NullUser" ] }
115115 } ;
116116
117117 yield return new object [ ] {
118118 "age gte 3" ,
119- new [ ] { TestData . Users [ "Doe " ] , TestData . Users [ "Egg" ] , TestData . Users [ "NullUser" ] }
119+ new [ ] { TestData . Users [ "Jane " ] , TestData . Users [ "Egg" ] , TestData . Users [ "NullUser" ] }
120120 } ;
121121
122122 yield return new object [ ] {
123123 "age lt 3 and age gt 1" ,
124- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Apple" ] }
124+ new [ ] { TestData . Users [ "John" ] }
125125 } ;
126126
127127 yield return new object [ ] {
@@ -241,7 +241,7 @@ public static IEnumerable<object[]> Parameters()
241241
242242 yield return new object [ ] {
243243 "balanceDecimal eq null and age gt 3" ,
244- new [ ] { TestData . Users [ "NullUser" ] }
244+ new [ ] { TestData . Users [ "Egg" ] , TestData . Users [ " NullUser"] }
245245 } ;
246246
247247 yield return new object [ ] {
@@ -276,12 +276,12 @@ public static IEnumerable<object[]> Parameters()
276276
277277 yield return new object [ ] {
278278 "age gt 2 and isEmailVerified eq true" ,
279- new [ ] { TestData . Users [ "Doe" ] , TestData . Users [ " NullUser"] }
279+ new [ ] { TestData . Users [ "NullUser" ] }
280280 } ;
281281
282282 yield return new object [ ] {
283283 "isEmailVerified eq false or age eq 2" ,
284- new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Jane" ] , TestData . Users [ "Apple" ] , TestData . Users [ " Harry"] , TestData . Users [ "Egg" ] }
284+ new [ ] { TestData . Users [ "John" ] , TestData . Users [ "Jane" ] , TestData . Users [ "Harry" ] , TestData . Users [ "Egg" ] }
285285 } ;
286286
287287 yield return new object [ ] {
@@ -355,8 +355,8 @@ public static IEnumerable<object[]> Parameters()
355355 } ;
356356
357357 yield return new object [ ] {
358- "(age eq 2 and manager/isEmailVerified eq true) or (age eq 3 and manager/manager ne null)" ,
359- new [ ] { TestData . Users [ "Apple" ] , TestData . Users [ " Egg"] }
358+ "(age eq 2 and manager/isEmailVerified eq true) or (age eq 33 and manager/manager ne null)" ,
359+ new [ ] { TestData . Users [ "Egg" ] }
360360 } ;
361361
362362 yield return new object [ ] {
0 commit comments