meetup-raffle-winner-picker/tests/FakeEventRepositoryTest.php

21 lines
406 B
PHP
Raw Normal View History

2022-01-13 20:13:28 +00:00
<?php
namespace App\Tests;
use App\EventRepository;
2022-01-13 20:13:28 +00:00
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
2022-01-13 20:29:32 +00:00
final class FakeEventRepositoryTest extends KernelTestCase
2022-01-13 20:13:28 +00:00
{
use EventRepositoryContractTest;
private EventRepository $repository;
public function setUp(): void
{
self::bootKernel();
$this->repository = static::$container->get(EventRepository::class);
}
2022-01-13 20:13:28 +00:00
}