diff --git a/tests/Unit/Adapters/ArtisanTestCommandTest.php b/tests/Unit/Adapters/ArtisanTestCommandTest.php index 26e5dcb..916ef3c 100644 --- a/tests/Unit/Adapters/ArtisanTestCommandTest.php +++ b/tests/Unit/Adapters/ArtisanTestCommandTest.php @@ -11,6 +11,13 @@ class ArtisanTestCommandTest extends TestCase { + public function setUp(): void + { + if (PHP_VERSION_ID >= 80400) { + $this->markTestSkipped('Test skipped on PHP 8.4'); + } + } + #[Test] public function testCoverage(): void { diff --git a/tests/Unit/Adapters/LaravelTest.php b/tests/Unit/Adapters/LaravelTest.php index 48b039b..1754017 100755 --- a/tests/Unit/Adapters/LaravelTest.php +++ b/tests/Unit/Adapters/LaravelTest.php @@ -20,6 +20,13 @@ class LaravelTest extends TestCase { + public function setUp(): void + { + if (PHP_VERSION_ID >= 80400) { + $this->markTestSkipped('Test skipped on PHP 8.4'); + } + } + #[Test] public function itIsRegisteredOnArtisan(): void { diff --git a/tests/Unit/Adapters/PhpunitTest.php b/tests/Unit/Adapters/PhpunitTest.php index adbd179..b74c2e4 100755 --- a/tests/Unit/Adapters/PhpunitTest.php +++ b/tests/Unit/Adapters/PhpunitTest.php @@ -11,6 +11,13 @@ class PhpunitTest extends TestCase { + public function setUp(): void + { + if (PHP_VERSION_ID >= 80400) { + $this->markTestSkipped('Test skipped on PHP 8.4'); + } + } + #[Test] public function itIsAPrinter(): void {