for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace Portiny\Console\Tests;
use Nette\DI\Container;
use PHPUnit\Framework\TestCase;
abstract class AbstractContainerTestCase extends TestCase
{
/**
* @var Container
*/
protected $container;
* {@inheritdoc}
protected function setUp(): void
$this->container = ContainerFactory::create();
}