![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/codeception/codeception/src/PHPUnit/ |
<?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); } }