@@ -209,37 +209,37 @@ public static function matchesDataProvider(): \Generator
209209 'initFilter ' => new IntegerFilter (equals: 1 )
210210 ];
211211
212- yield "test match contains " => [
212+ yield "test match less than " => [
213213 'stringForTrueCase ' => 1 ,
214214 'stringForFalseCase ' => 5 ,
215215 'initFilter ' => new IntegerFilter (lessThan: 3 )
216216 ];
217217
218- yield "test match begins with " => [
218+ yield "test match greater than " => [
219219 'stringForTrueCase ' => 6 ,
220220 'stringForFalseCase ' => 2 ,
221221 'initFilter ' => new IntegerFilter (greaterThan: 4 )
222222 ];
223223
224- yield "test match begins with and contains " => [
224+ yield "test match between " => [
225225 'stringForTrueCase ' => 5 ,
226226 'stringForFalseCase ' => 2 ,
227227 'initFilter ' => new IntegerFilter (between: [3 , 5 ])
228228 ];
229229
230- yield "test match equals and contains " => [
230+ yield "test match less and greater than " => [
231231 'stringForTrueCase ' => 7 ,
232232 'stringForFalseCase ' => 3 ,
233233 'initFilter ' => new IntegerFilter (lessThan: 10 , greaterThan: 4 )
234234 ];
235235
236- yield "test is and is not integer " => [
236+ yield "test not matches with float " => [
237237 'stringForTrueCase ' => 2 ,
238238 'stringForFalseCase ' => 2.1 ,
239239 'initFilter ' => new IntegerFilter (equals: 2 )
240240 ];
241241
242- yield "test is and is not integer with string " => [
242+ yield "test not matches with string " => [
243243 'stringForTrueCase ' => 3 ,
244244 'stringForFalseCase ' => '3 ' ,
245245 'initFilter ' => new IntegerFilter (equals: 3 )
0 commit comments