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
Install
Test
Constraint
AssertDevdocsLink.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Install\Test\Constraint
;
8
9
use Magento\Install\Test\Page\DevdocsInstall;
10
use Magento\Mtf\Constraint\AbstractConstraint;
11
15
class
AssertDevdocsLink
extends
AbstractConstraint
16
{
20
const
DEVDOCS_TITLE_TEXT
=
'Setup Wizard installation'
;
21
28
public
function
processAssert
(DevdocsInstall $devdocsInstallPage)
29
{
30
\PHPUnit\Framework\Assert::assertEquals(
31
self::DEVDOCS_TITLE_TEXT,
32
$devdocsInstallPage->getDevdocsBlock()->getDevdocsTitle(),
33
'Developer Documentation link is wrong.'
34
);
35
}
36
42
public
function
toString
()
43
{
44
return
"Developer Documentation link is correct."
;
45
}
46
}
Magento\Install\Test\Constraint
Definition:
AssertAdminUriAutogenerated.php:7
Magento\Install\Test\Constraint\AssertDevdocsLink\DEVDOCS_TITLE_TEXT
const DEVDOCS_TITLE_TEXT
Definition:
AssertDevdocsLink.php:20
Magento\Install\Test\Constraint\AssertDevdocsLink\processAssert
processAssert(DevdocsInstall $devdocsInstallPage)
Definition:
AssertDevdocsLink.php:28
Magento\Install\Test\Constraint\AssertDevdocsLink
Definition:
AssertDevdocsLink.php:15
Magento\Install\Test\Constraint\AssertDevdocsLink\toString
toString()
Definition:
AssertDevdocsLink.php:42