예제 #1
0
파일: ApcTest.php 프로젝트: nervo/Gaufrette
 /**
  * @depends testWriteAndRead
  */
 public function testChecksum()
 {
     $adapter = new Apc(self::PREFIX);
     $adapter->write(self::KEY, self::CONTENT);
     $this->assertEquals(md5(self::CONTENT), $adapter->checksum(self::KEY));
 }