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