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