21 lines
406 B
PHP
21 lines
406 B
PHP
<?php
|
|
|
|
namespace App\Tests;
|
|
|
|
use App\EventRepository;
|
|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|
|
|
final class FakeEventRepositoryTest extends KernelTestCase
|
|
{
|
|
use EventRepositoryContractTest;
|
|
|
|
private EventRepository $repository;
|
|
|
|
public function setUp(): void
|
|
{
|
|
self::bootKernel();
|
|
|
|
$this->repository = static::$container->get(EventRepository::class);
|
|
}
|
|
}
|