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-functional-testing-framework
src
Magento
FunctionalTestingFramework
Exceptions
TestReferenceException.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\FunctionalTestingFramework\Exceptions
;
8
9
use
Magento\FunctionalTestingFramework\Util\Logger\LoggingUtil
;
10
14
class
TestReferenceException
extends
\Exception
15
{
22
public
function
__construct
(
$message
, $context = [])
23
{
24
list($childClass, $callingClass) = debug_backtrace(
false
, 2);
25
LoggingUtil::getInstance
()->getLogger($callingClass[
'class'
])->error(
26
"Line {$callingClass['line']}: $message"
,
27
$context
28
);
29
30
parent::__construct(
$message
);
31
}
32
}
Magento\FunctionalTestingFramework\Exceptions
Magento\FunctionalTestingFramework\Exceptions\TestReferenceException\__construct
__construct($message, $context=[])
Definition:
TestReferenceException.php:22
$message
$message
Definition:
notifications.php:7
Magento\FunctionalTestingFramework\Util\Logger\LoggingUtil
Definition:
LoggingUtil.php:12
Magento\FunctionalTestingFramework\Util\Logger\LoggingUtil\getInstance
static getInstance()
Definition:
LoggingUtil.php:33
Magento\FunctionalTestingFramework\Exceptions\TestReferenceException
Definition:
TestReferenceException.php:14