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 d88bdbc commit 30c8b42Copy full SHA for 30c8b42
Tests/Store/RedisProxyStoreFactoryTest.php
@@ -23,6 +23,10 @@ class RedisProxyStoreFactoryTest extends TestCase
23
{
24
public function testCreateStore()
25
26
+ if (!class_exists(RedisProxy::class)) {
27
+ $this->markTestSkipped();
28
+ }
29
+
30
$store = StoreFactory::createStore($this->createMock(RedisProxy::class));
31
32
$this->assertInstanceOf(RedisStore::class, $store);
0 commit comments