14 lines
263 B
PHP
14 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Tests;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|
|
|
final class EventRepositoryTest extends KernelTestCase
|
|
{
|
|
/** @test */
|
|
public function should_only_return_attendees_with_a_yes_rsvp(): array {
|
|
return [];
|
|
}
|
|
}
|