Exemplo n.º 1
0
 /**
  * @covers Guzzle\Http\Plugin\CachePlugin::__construct
  * @covers Guzzle\Http\Plugin\CachePlugin::getCacheAdapter
  */
 public function testConstructorSetsValues()
 {
     $plugin = new CachePlugin($this->adapter, true, true, 1200);
     $this->assertEquals($this->adapter, $plugin->getCacheAdapter());
 }