. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Exceptions; use Fisharebest\Webtrees\TestCase; /** * Test harness for the class GedcomErrorException * * @covers \Fisharebest\Webtrees\Exceptions\GedcomErrorException */ class GedcomErrorExceptionTest extends TestCase { public function testClass(): void { $this->assertTrue(class_exists(\Fisharebest\Webtrees\Exceptions\GedcomErrorException::class)); } }