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