| 1 |
<?php |
| 2 |
|
| 3 |
declare( strict_types=1 ); |
| 4 |
|
| 5 |
namespace Tests\Integration; |
| 6 |
|
| 7 |
use Packetery\Nette\DI\Container; |
| 8 |
use PHPUnit\Framework\TestCase; |
| 9 |
|
| 10 |
abstract class AbstractIntegrationTestCase extends TestCase { |
| 11 |
|
| 12 |
protected Container $container; |
| 13 |
|
| 14 |
public function __construct( string $name ) { |
| 15 |
parent::__construct( $name ); |
| 16 |
|
| 17 |
$this->container = IntegrationTestsHelper::getContainer(); |
| 18 |
} |
| 19 |
} |
| 20 |
|