Example #1
0
 public function testMarkCachedAndExists()
 {
     $item = new Item('key');
     $this->assertFalse($item->exists());
     $this->assertInstanceOf('\\JoeBengalen\\Cache\\Item', $item->markCached());
     $this->assertTrue($item->exists());
 }