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