Files
testcontainers-php/tests/Integration/ContainerTestCase.php
T
2025-01-01 23:29:57 +01:00

20 lines
378 B
PHP

<?php
declare(strict_types=1);
namespace Testcontainers\Tests\Integration;
use PHPUnit\Framework\TestCase;
use Testcontainers\Container\StartedTestContainer;
abstract class ContainerTestCase extends TestCase
{
protected StartedTestContainer $container;
protected function tearDown(): void
{
$this->container->stop();
parent::tearDown();
}
}