refactor(meetup): group Meetup related classes
This commit is contained in:
parent
5ab4097ace
commit
3350085e85
3 changed files with 5 additions and 3 deletions
24
tests/Meetup/MeetupEventRepositoryTest.php
Normal file
24
tests/Meetup/MeetupEventRepositoryTest.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
namespace App\Tests\Meetup;
|
||||
|
||||
use App\EventRepository;
|
||||
use App\Tests\EventRepositoryContractTest;
|
||||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue