Example #1
0
 /**
  * @test
  */
 public function disableStopWatch_success()
 {
     $this->target->enableStopWatch();
     $this->target->disableStopWatch();
     $this->assertFalse($this->target->hasStopWatch());
 }
Example #2
0
 /**
  * @inheritdoc
  */
 public function enableStopWatch($boolean = true)
 {
     $boolean ? $this->context->enableStopWatch() : $this->context->disableStopWatch();
     return $this;
 }