File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/codeception/phpunit-wrapper/src/TestCase.php
<?php
namespace Codeception\PHPUnit;
abstract class TestCase extends \PHPUnit\Framework\TestCase
{
protected function setUp(): void
{
if (method_exists($this, '_setUp')) {
$this->_setUp();
}
}
protected function tearDown(): void
{
if (method_exists($this, '_tearDown')) {
$this->_tearDown();
}
}
public static function setUpBeforeClass(): void
{
if (method_exists(get_called_class(), '_setUpBeforeClass')) {
static::_setUpBeforeClass();
}
}
public static function tearDownAfterClass(): void
{
if (method_exists(get_called_class(), '_tearDownAfterClass')) {
static::_tearDownAfterClass();
}
}
public function expectExceptionMessageRegExp(string $regularExpression): void
{
$this->expectExceptionMessageMatches($regularExpression);
}
public static function assertRegExp(string $pattern, string $string, string $message = ''): void
{
parent::assertMatchesRegularExpression($pattern, $string, $message);
}
public static function assertNotRegExp(string $pattern, string $string, string $message = ''): void
{
parent::assertDoesNotMatchRegularExpression($pattern, $string, $message);
}
public static function assertFileNotExists(string $filename, string $message = ''): void
{
parent::assertFileDoesNotExist($filename, $message);
}
}