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

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