Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
dev
tests
functional
tests
app
Magento
CatalogSearch
Test
Constraint
AssertSearchTermMassActionsNotInGrid.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\CatalogSearch\Test\Constraint
;
8
9
use
Magento\CatalogSearch\Test\Fixture\CatalogSearchQuery
;
10
use Magento\CatalogSearch\Test\Page\Adminhtml\CatalogSearchIndex;
11
use Magento\Mtf\Constraint\AbstractConstraint;
12
17
class
AssertSearchTermMassActionsNotInGrid
extends
AbstractConstraint
18
{
27
public
function
processAssert(
28
array $searchTerms,
29
CatalogSearchIndex $indexPage,
30
AssertSearchTermNotInGrid
$assertSearchTermNotInGrid
31
) {
32
foreach
($searchTerms as $term) {
34
$assertSearchTermNotInGrid->
processAssert
($indexPage, $term);
35
}
36
}
37
43
public
function
toString
()
44
{
45
return
'Search terms were not found in grid.'
;
46
}
47
}
Magento\CatalogSearch\Test\Constraint\AssertSearchTermMassActionsNotInGrid\toString
toString()
Definition:
AssertSearchTermMassActionsNotInGrid.php:43
Magento\CatalogSearch\Test\Constraint\AssertSearchTermNotInGrid\processAssert
processAssert(CatalogSearchIndex $indexPage, CatalogSearchQuery $searchTerm)
Definition:
AssertSearchTermNotInGrid.php:26
Magento\CatalogSearch\Test\Constraint
Definition:
AssertAdvancedSearchAttributeIsAbsent.php:7
Magento\CatalogSearch\Test\Fixture\CatalogSearchQuery
Definition:
QueryText.php:7
Magento\CatalogSearch\Test\Constraint\AssertSearchTermNotInGrid
Definition:
AssertSearchTermNotInGrid.php:17
Magento\CatalogSearch\Test\Constraint\AssertSearchTermMassActionsNotInGrid
Definition:
AssertSearchTermMassActionsNotInGrid.php:17