. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Exceptions; use Fisharebest\Webtrees\TestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(InvalidGedcomEncodingException::class)] class InvalidGedcomEncodingExceptionTest extends TestCase { public function testClass(): void { self::assertTrue(class_exists(InvalidGedcomEncodingException::class)); } }