mirror of
https://github.com/stan220/testcontainers-php.git
synced 2026-09-08 20:29:35 +00:00
some reordering and test optimizations to align new API.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Testcontainers\Tests\Integration;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Testcontainers\Container\GenericContainer;
|
||||
|
||||
abstract class ContainerTestCase extends TestCase
|
||||
{
|
||||
protected static GenericContainer $container;
|
||||
|
||||
protected function tearDown(): void
|
||||
{
|
||||
self::$container->remove();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user