summaryrefslogtreecommitdiff
path: root/tests/app/Module/GoogleAnalyticsModuleTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Module/GoogleAnalyticsModuleTest.php')
-rw-r--r--tests/app/Module/GoogleAnalyticsModuleTest.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/app/Module/GoogleAnalyticsModuleTest.php b/tests/app/Module/GoogleAnalyticsModuleTest.php
index 669c84bc09..89ebb5a339 100644
--- a/tests/app/Module/GoogleAnalyticsModuleTest.php
+++ b/tests/app/Module/GoogleAnalyticsModuleTest.php
@@ -20,16 +20,14 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Module;
use Fisharebest\Webtrees\TestCase;
+use PHPUnit\Framework\Attributes\CoversClass;
-/**
- * Test harness for the class GoogleAnalyticsModule
- *
- * @covers \Fisharebest\Webtrees\Module\GoogleAnalyticsModule
- */
+
+#[CoversClass(GoogleAnalyticsModule::class)]
class GoogleAnalyticsModuleTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(\Fisharebest\Webtrees\Module\GoogleAnalyticsModule::class));
+ $this->assertTrue(class_exists(GoogleAnalyticsModule::class));
}
}