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

24 lines
428 B
PHP
Raw Normal View History

<?php
namespace App\Tests;
use App\EventRepository;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
/**
* @group api
*/
final class MeetupEventRepositoryTest extends KernelTestCase
{
use EventRepositoryContractTest;
private EventRepository $repository;
public function setUp(): void
{
self::bootKernel();
$this->repository = self::$container->get(EventRepository::class);
}
}