| 1 | <?php |
||
| 12 | abstract class WebTestCase extends TestCase |
||
| 13 | { |
||
| 14 | /** @var \Application\AppKernel */ |
||
| 15 | protected $kernel; |
||
| 16 | |||
| 17 | /** @var \Symfony\Component\HttpKernel\HttpKernelBrowser */ |
||
| 18 | protected $httpKernelBrowser; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Create the application kernel for the functional tests |
||
| 22 | */ |
||
| 23 | protected function setUp(): void |
||
| 28 | } |
||
| 29 |