1 | <?php |
||
14 | abstract class TestCase extends \SergeyMakinen\Tests\TestCase |
||
15 | { |
||
16 | /** |
||
17 | * @inheritDoc |
||
18 | */ |
||
19 | 1 | protected function tearDown() |
|
24 | |||
25 | /** |
||
26 | * Creates a Yii 2 console application. |
||
27 | * @param array $config |
||
28 | * @param string $class |
||
29 | */ |
||
30 | 1 | protected function createConsoleApplication(array $config = [], $class = 'yii\console\Application') |
|
38 | |||
39 | /** |
||
40 | * Creates a Yii 2 web application. |
||
41 | * @param array $config |
||
42 | * @param string $class |
||
43 | */ |
||
44 | 1 | protected function createWebApplication(array $config = [], $class = 'yii\web\Application') |
|
59 | |||
60 | /** |
||
61 | * Destroys an active Yii 2 application. |
||
62 | */ |
||
63 | 1 | protected function destroyApplication() |
|
74 | } |
||
75 |