Example #1
0
 /**
  * @test
  */
 public function disableDebug_success()
 {
     $this->target->enableDebug();
     $this->target->disableDebug();
     $this->assertFalse($this->target->hasDebug());
 }
Example #2
0
 /**
  * @inheritdoc
  */
 public function enableDebug($boolean = true)
 {
     $boolean ? $this->context->enableDebug() : $this->context->disableDebug();
     return $this;
 }