| 1 | <?php |
||
| 23 | class AbstractTestCase extends WebTestCase |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var ContainerInterface |
||
| 27 | */ |
||
| 28 | protected static $container; |
||
| 29 | |||
| 30 | public function setUp() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param array $options An array of options to pass to the createKernel class |
||
| 40 | * |
||
| 41 | * @return KernelInterface |
||
| 42 | */ |
||
| 43 | protected static function getKernel(array $options = []): KernelInterface |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param array $values |
||
| 52 | * |
||
| 53 | * @return Page |
||
| 54 | */ |
||
| 55 | protected function createPage(array $values = []): Page |
||
| 65 | } |
||
| 66 |