diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-11 16:27:34 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-11 16:27:34 +0000 |
| commit | cb2659b5d56814fbc12027f51bc937af3dae6a34 (patch) | |
| tree | 5ae72d633976d38384f71952eb3e0521c8208ffa /tests/integration | |
| parent | 6fb85f81d4737b3c5aac4d8a0925e3598f98900e (diff) | |
PHPUnit cleanup, get group detection working.
Diffstat (limited to 'tests/integration')
| -rw-r--r-- | tests/integration/ApiTest.php | 3 | ||||
| -rw-r--r-- | tests/integration/SanitizerTest.php | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/integration/ApiTest.php b/tests/integration/ApiTest.php index 3287a7735..c7fe534fe 100644 --- a/tests/integration/ApiTest.php +++ b/tests/integration/ApiTest.php @@ -1,7 +1,8 @@ <?php +use PHPUnit\Framework\Attributes\Group; use PHPUnit\Framework\TestCase; -/** @group integration */ +#[Group('integration')] final class ApiTest extends TestCase { private string $api_url = ""; private string $app_url = ""; diff --git a/tests/integration/SanitizerTest.php b/tests/integration/SanitizerTest.php index 421d046af..0f15bf0ca 100644 --- a/tests/integration/SanitizerTest.php +++ b/tests/integration/SanitizerTest.php @@ -1,7 +1,8 @@ <?php +use PHPUnit\Framework\Attributes\Group; use PHPUnit\Framework\TestCase; -/** @group integration */ +#[Group('integration')] final class SanitizerTest extends TestCase { public function test_sanitize_non_ascii(): void { $this->assertEquals( |