use Friendica\Core\Cache\Capability\ICanCache;
use Friendica\Core\Cache\Capability\ICanCacheInMemory;
+use Friendica\Core\Cache\Type\AbstractCache;
use Friendica\Test\MockedTest;
use Friendica\Util\PidFile;
self::assertTrue($this->instance->set('key space', 'value'));
self::assertEquals('value', $this->instance->get('key space'));
}
+
+ public function testGetName()
+ {
+ if (property_exists($this->instance, '$NAME')) {
+ self::assertEquals($this->instance::$NAME, $this->instance->getName());
+ } else {
+ self::expectNotToPerformAssertions();
+ }
+ }
}