clear() публичный Метод

public clear ( )
Пример #1
0
 public function testClear()
 {
     $prefix = 'ns';
     $key = 'key';
     $returnValue = true;
     $stub = $this->getHierarchyCacheStub();
     $stub->expects($this->once())->method('clear')->willReturn($returnValue);
     $pool = new PrefixedCachePool($stub, $prefix);
     $this->assertEquals($returnValue, $pool->clear($key));
 }