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