. */ declare(strict_types=1); namespace Fisharebest\Webtrees; /** * Test harness for the class Note */ class NoteTest extends TestCase { /** * Test that the class exists * * @return void */ public function testClassExists(): void { $this->assertTrue(class_exists(\Fisharebest\Webtrees\Note::class)); } }