We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24a2d6f commit e292cbfCopy full SHA for e292cbf
1 file changed
Tests/Integration/ShmopClientTest.php
@@ -0,0 +1,26 @@
1
+<?php
2
+
3
+namespace Tests\Koded\Caching\Integration;
4
5
+use Koded\Caching\CachePool;
6
+use Psr\Cache\CacheItemPoolInterface;
7
8
+class ShmopClientTest extends CachePoolIntegrationTest
9
+{
10
+ /**
11
+ * @return CacheItemPoolInterface that is used in the tests
12
+ */
13
+ public function createCachePool()
14
+ {
15
+ return CachePool::use('shmop');
16
+ }
17
18
+ protected function setUp(): void
19
20
+ if (false === extension_loaded('shmop')) {
21
+ $this->markTestSkipped('shmop extension is not loaded.');
22
23
24
+ parent::setUp();
25
26
+}
0 commit comments