We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7deb37c commit 9d1f886Copy full SHA for 9d1f886
tests/Dashboards/APCuTest.php
@@ -22,7 +22,7 @@ final class APCuTest extends TestCase {
22
23
public static function setUpBeforeClass(): void {
24
if (ini_get('apc.enable_cli') !== '1') {
25
- self::markTestSkipped('APC CLI is not enabled. Skipping all tests.');
+ self::markTestSkipped('APC CLI is not enabled. Skipping tests.');
26
}
27
28
tests/Dashboards/Redis/PredisTest.php
@@ -8,6 +8,14 @@
8
9
namespace Tests\Dashboards\Redis;
10
11
+use Predis\Client;
12
+
13
class PredisTest extends RedisTestCase {
14
+ public static function setUpBeforeClass(): void {
15
+ if (!class_exists(Client::class)) {
16
+ self::markTestSkipped('Predis is not installed. Skipping tests.');
17
+ }
18
19
20
protected string $client = 'predis';
21
0 commit comments