repository = static::$container->get(EventRepository::class); } /** @test */ public function should_only_return_attendees_with_a_yes_rsvp(): void { $attendees = $this->repository->getConfirmedAttendees(); $this->assertCount(3, $attendees); } }