# packeta/trunk/tests/Integration/AbstractIntegrationTestCase.php

Packeta, version trunk. 20 lines.

- Page: https://pluginprobe.com/plugins/packeta/trunk/code/tests/Integration/AbstractIntegrationTestCase.php
- Raw: https://pluginprobe.com/plugins/packeta/trunk/raw/tests/Integration/AbstractIntegrationTestCase.php
- Modified: 2025-11-07T08:59:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/trunk/code/tests/Integration/AbstractIntegrationTestCase.php#L10-L20`.

```php
<?php

declare( strict_types=1 );

namespace Tests\Integration;

use Packetery\Nette\DI\Container;
use PHPUnit\Framework\TestCase;

abstract class AbstractIntegrationTestCase extends TestCase {

	protected Container $container;

	public function __construct( string $name ) {
		parent::__construct( $name );

		$this->container = IntegrationTestsHelper::getContainer();
	}
}

```
