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