コード例 #1
0
ファイル: BlobStoreTest.php プロジェクト: Rikuforever/wiki
 public function testGetStats()
 {
     $this->cache->expects($this->once())->method('getStats')->will($this->returnValue(array()));
     $instance = new BlobStore('Foo', $this->cache);
     $instance->getStats();
 }