forked from Codeception/Codeception
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTestCase.php
More file actions
56 lines (45 loc) · 1.44 KB
/
Copy pathTestCase.php
File metadata and controls
56 lines (45 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?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);
}
}