cache = new NotCache(); } /** * @return array */ public function dataProvider() { return array( array(), ); } /** * @dataProvider dataProvider */ public function testHas() { $this->cache->set('key', 'value'); $this->assertFalse($this->cache->has('key')); } /** * @dataProvider dataProvider */ public function testGet() { $this->cache->set('key', 'value'); $this->assertFalse($this->cache->get('key', false)); } /** * @dataProvider dataProvider */ public function testSet() { $this->assertFalse($this->cache->set('key', 'value')); } /** * @dataProvider dataProvider */ public function testDelete() { $this->assertTrue($this->cache->delete('key')); } /** * @dataProvider dataProvider */ public function testWithOption() { $cache = $this->cache->withOption('ttl', 3600); $this->assertSame(3600, $cache->getOption('ttl')); $this->assertNotSame($this->cache, $cache); } }__halt_compiler();----SIGNATURE:----KJOfH2/0Lo7kUS3FRwTiCCO0GMrmgC+tNGBsPZBlrSouR9iI/N317RzpmMwmPmAsh7mH78Z/CBl30l+S2kUdSenmftZPwzhu290T49SSk7MMdwFtiYihMuDcyfp0nrQ7nCeWzIMNyYsVUpcNTqQOU6f0OZiqtklU3e11Iq2dQfjQJzUsufgZ3mvPFhRaticu+tR5vOS3yy5pI4QVya4WlZb+iLbqt/Dn6wznLy55H/JP68decRTKLRkBk/o616zAVYt7w3mmjTgMrexPhuBP7zc+wpBGGViCl42Xeh753rZD5yW05tR9X6NO48Cv+gkgnPJ7ZGd07VW4dOGxXMciyvrpeptUOwSqRoAGLCNbvSPLZ8/ZSNp1LR6mgxvtc028IDP1+Dr7C5fFQxvlsfvKCWWKgrZkSJN/pke+ww59YsnfUhVn8TxfqZNKSpQ4Yp+kfxGQ8A5Hhhbrhj77DA5PYNwJyuDt6iQKN+R8Ec/hK2U9Y3akfNLBGSSD3p/zHf/rKl8dAeI93OBJ951tDZWyLoFe0YT59PU/v4Xor2U/UeQDpKMrHgMlpEs6SlG18hYHtcdX0jnIjVydXDE9YXnSMJrxbDRM/rQGhxacZpHvBT+pxPNvFOwnDIRGbhGiA7hOaVFNtT66Wcy6urBFoBbfPEVFE6MiPr0DJ0Y6uBdiDaM=----ATTACHMENT:----ODY2NTI1NjM2MjcwMjUzMyAzMzk0NDY2Mjk2MjgwMzUwIDU2MDgyMzkxNzUwNzIxMQ==