. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Services\EmailService; /** * Test harness for the class MailService * * @covers \Fisharebest\Webtrees\Services\EmailService */ class EmailServiceTest extends TestCase { /** * Test that the class exists * * @return void */ public function testClassExists(): void { self::assertTrue(class_exists(EmailService::class)); } }