コード例 #1
0
ファイル: BagOStuffTest.php プロジェクト: paladox/mediawiki
 /**
  * @covers BagOStuff::getWithSetCallback
  */
 public function testGetWithSetCallback()
 {
     $key = wfMemcKey('test');
     $value = $this->cache->getWithSetCallback($key, 30, function () {
         return 'hello kitty';
     });
     $this->assertEquals('hello kitty', $value);
     $this->assertEquals($value, $this->cache->get($key));
 }