Example #1
0
 /**
  * @test
  * @expectedException \InvalidArgumentException
  */
 public function setCachePath_fail()
 {
     $this->target->setCachePath('Lorem Ipsum');
 }
Example #2
0
 /**
  * @inheritdoc
  */
 public function setCachePath($path = null)
 {
     $this->context->setCachePath($path);
     return $this;
 }