@@ -139,9 +139,6 @@ private function assertOrderedProductIds($queryResponse, $expectedIds)
139
139
$ this ->assertEquals ($ expectedIds , $ actualIds );
140
140
}
141
141
142
- /**
143
- * @magentoConfigFixture default/catalog/search/engine mysql
144
- */
145
142
public function testMatchQuery ()
146
143
{
147
144
$ this ->requestBuilder ->bind ('fulltext_search_query ' , 'socks ' );
@@ -154,7 +151,6 @@ public function testMatchQuery()
154
151
155
152
/**
156
153
* @magentoDataFixture Magento/Framework/Search/_files/products_multi_option.php
157
- * @magentoConfigFixture default/catalog/search/engine mysql
158
154
*/
159
155
public function testMatchOrderedQuery ()
160
156
{
@@ -170,9 +166,6 @@ public function testMatchOrderedQuery()
170
166
$ this ->assertOrderedProductIds ($ queryResponse , $ expectedIds );
171
167
}
172
168
173
- /**
174
- * @magentoConfigFixture default/catalog/search/engine mysql
175
- */
176
169
public function testAggregationsQuery ()
177
170
{
178
171
$ this ->requestBuilder ->bind ('fulltext_search_query ' , 'peoples ' );
@@ -187,9 +180,6 @@ public function testAggregationsQuery()
187
180
);
188
181
}
189
182
190
- /**
191
- * @magentoConfigFixture default/catalog/search/engine mysql
192
- */
193
183
public function testMatchQueryFilters ()
194
184
{
195
185
$ this ->requestBuilder ->bind ('fulltext_search_query ' , 'socks ' );
@@ -204,8 +194,6 @@ public function testMatchQueryFilters()
204
194
205
195
/**
206
196
* Range filter test with all fields filled
207
- *
208
- * @magentoConfigFixture default/catalog/search/engine mysql
209
197
*/
210
198
public function testRangeFilterWithAllFields ()
211
199
{
@@ -219,8 +207,6 @@ public function testRangeFilterWithAllFields()
219
207
220
208
/**
221
209
* Range filter test with all fields filled
222
- *
223
- * @magentoConfigFixture default/catalog/search/engine mysql
224
210
*/
225
211
public function testRangeFilterWithoutFromField ()
226
212
{
@@ -233,8 +219,6 @@ public function testRangeFilterWithoutFromField()
233
219
234
220
/**
235
221
* Range filter test with all fields filled
236
- *
237
- * @magentoConfigFixture default/catalog/search/engine mysql
238
222
*/
239
223
public function testRangeFilterWithoutToField ()
240
224
{
@@ -247,8 +231,6 @@ public function testRangeFilterWithoutToField()
247
231
248
232
/**
249
233
* Term filter test
250
- *
251
- * @magentoConfigFixture default/catalog/search/engine mysql
252
234
*/
253
235
public function testTermFilter ()
254
236
{
@@ -262,8 +244,6 @@ public function testTermFilter()
262
244
263
245
/**
264
246
* Term filter test
265
- *
266
- * @magentoConfigFixture default/catalog/search/engine mysql
267
247
*/
268
248
public function testTermFilterArray ()
269
249
{
@@ -276,8 +256,6 @@ public function testTermFilterArray()
276
256
277
257
/**
278
258
* Term filter test
279
- *
280
- * @magentoConfigFixture default/catalog/search/engine mysql
281
259
*/
282
260
public function testWildcardFilter ()
283
261
{
@@ -292,8 +270,6 @@ public function testWildcardFilter()
292
270
293
271
/**
294
272
* Request limits test
295
- *
296
- * @magentoConfigFixture default/catalog/search/engine mysql
297
273
*/
298
274
public function testSearchLimit ()
299
275
{
@@ -308,8 +284,6 @@ public function testSearchLimit()
308
284
309
285
/**
310
286
* Bool filter test
311
- *
312
- * @magentoConfigFixture default/catalog/search/engine mysql
313
287
*/
314
288
public function testBoolFilter ()
315
289
{
@@ -331,8 +305,6 @@ public function testBoolFilter()
331
305
332
306
/**
333
307
* Test bool filter with nested negative bool filter
334
- *
335
- * @magentoConfigFixture default/catalog/search/engine mysql
336
308
*/
337
309
public function testBoolFilterWithNestedNegativeBoolFilter ()
338
310
{
@@ -349,8 +321,6 @@ public function testBoolFilterWithNestedNegativeBoolFilter()
349
321
350
322
/**
351
323
* Test range inside nested negative bool filter
352
- *
353
- * @magentoConfigFixture default/catalog/search/engine mysql
354
324
*/
355
325
public function testBoolFilterWithNestedRangeInNegativeBoolFilter ()
356
326
{
@@ -367,7 +337,6 @@ public function testBoolFilterWithNestedRangeInNegativeBoolFilter()
367
337
/**
368
338
* Sample Advanced search request test
369
339
*
370
- * @magentoConfigFixture default/catalog/search/engine mysql
371
340
* @dataProvider advancedSearchDataProvider
372
341
* @param string $nameQuery
373
342
* @param string $descriptionQuery
@@ -408,7 +377,6 @@ public function advancedSearchDataProvider()
408
377
409
378
/**
410
379
* @magentoDataFixture Magento/Framework/Search/_files/filterable_attribute.php
411
- * @magentoConfigFixture default/catalog/search/engine mysql
412
380
*/
413
381
public function testCustomFilterableAttribute ()
414
382
{
@@ -471,7 +439,6 @@ public function filterByAttributeValuesDataProvider()
471
439
* Test filtering by two attributes.
472
440
*
473
441
* @magentoDataFixture Magento/Framework/Search/_files/filterable_attributes.php
474
- * @magentoConfigFixture default/catalog/search/engine mysql
475
442
* @dataProvider filterByAttributeValuesDataProvider
476
443
* @param string $requestName
477
444
* @param array $additionalData
@@ -508,7 +475,6 @@ public function testFilterByAttributeValues($requestName, $additionalData)
508
475
* @param $rangeFilter
509
476
* @param $expectedRecordsCount
510
477
* @magentoDataFixture Magento/Framework/Search/_files/date_attribute.php
511
- * @magentoConfigFixture default/catalog/search/engine mysql
512
478
* @dataProvider dateDataProvider
513
479
*/
514
480
public function testAdvancedSearchDateField ($ rangeFilter , $ expectedRecordsCount )
@@ -523,7 +489,6 @@ public function testAdvancedSearchDateField($rangeFilter, $expectedRecordsCount)
523
489
524
490
/**
525
491
* @magentoDataFixture Magento/Framework/Search/_files/product_configurable.php
526
- * @magentoConfigFixture default/catalog/search/engine mysql
527
492
*/
528
493
public function testAdvancedSearchCompositeProductWithOutOfStockOption ()
529
494
{
@@ -561,7 +526,6 @@ public function testAdvancedSearchCompositeProductWithOutOfStockOption()
561
526
562
527
/**
563
528
* @magentoDataFixture Magento/Framework/Search/_files/product_configurable_with_disabled_child.php
564
- * @magentoConfigFixture default/catalog/search/engine mysql
565
529
*/
566
530
public function testAdvancedSearchCompositeProductWithDisabledChild ()
567
531
{
@@ -595,7 +559,6 @@ public function testAdvancedSearchCompositeProductWithDisabledChild()
595
559
* and affects search results.
596
560
*
597
561
* @magentoDataFixture Magento/Framework/Search/_files/search_weight_products.php
598
- * @magentoConfigFixture default/catalog/search/engine mysql
599
562
*/
600
563
public function testSearchQueryBoost ()
601
564
{
0 commit comments