示例#1
0
 /**
  * @group Phpreboot_Stopwatch_StopWatch_isWatchExist
  */
 public function testWatchExistenceCanBeChecked()
 {
     $this->assertFalse($this->stopWatch->isWatchExist('newWatch'));
     $this->stopWatch->addWatch("newWatch");
     $this->assertTrue($this->stopWatch->isWatchExist('newWatch'));
 }