| Current Path : /home/rtorresani/www/dev/tests/integration/framework/Magento/TestFramework/ErrorLog/ |
| Current File : //home/rtorresani/www/dev/tests/integration/framework/Magento/TestFramework/ErrorLog/Listener.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\TestFramework\ErrorLog;
use Magento\TestFramework\Helper;
class Listener implements \PHPUnit\Framework\TestListener
{
/**
* @var \Magento\TestFramework\ErrorLog\Logger
*/
private $logger;
/**
* @inheritDoc
* @SuppressWarnings(PHPMD.ShortVariable)
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function addError(\PHPUnit\Framework\Test $test, \Throwable $t, float $time): void
{
}
/**
* @inheritDoc
* @SuppressWarnings(PHPMD.ShortVariable)
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function addFailure(
\PHPUnit\Framework\Test $test,
\PHPUnit\Framework\AssertionFailedError $e,
float $time
): void {
}
/**
* @inheritDoc
* @SuppressWarnings(PHPMD.ShortVariable)
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function addIncompleteTest(\PHPUnit\Framework\Test $test, \Throwable $t, float $time): void
{
}
/**
* @inheritDoc
* @SuppressWarnings(PHPMD.ShortVariable)
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function addRiskyTest(\PHPUnit\Framework\Test $test, \Throwable $t, float $time): void
{
}
/**
* @inheritDoc
* @SuppressWarnings(PHPMD.ShortVariable)
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function addSkippedTest(\PHPUnit\Framework\Test $test, \Throwable $t, float $time): void
{
}
/**
* @inheritDoc
*/
public function startTestSuite(\PHPUnit\Framework\TestSuite $suite): void
{
}
/**
* @inheritDoc
*/
public function endTestSuite(\PHPUnit\Framework\TestSuite $suite): void
{
}
/**
* @inheritDoc
*/
public function startTest(\PHPUnit\Framework\Test $test): void
{
$this->logger = Helper\Bootstrap::getObjectManager()->get(\Magento\TestFramework\ErrorLog\Logger::class);
$this->logger->clearMessages();
}
/**
* @inheritDoc
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function endTest(\PHPUnit\Framework\Test $test, float $time): void
{
if ($test instanceof \PHPUnit\Framework\TestCase) {
$messages = $this->logger->getMessages();
try {
if ($messages) {
$test->assertEquals(
'',
var_export($messages, true),
'Errors were added to log during test execution.'
);
}
} catch (\Exception $e) {
$test->getTestResultObject()->addError($test, $e, 0);
}
}
}
/**
* @inheritDoc
*/
public function addWarning(\PHPUnit\Framework\Test $test, \PHPUnit\Framework\Warning $e, float $time): void
{
}
}