コード例 #1
0
ファイル: TraceManagerTest.php プロジェクト: renanbr/telltale
 public function testWhenStartedTwiceThroughApiMustReturnSameFile()
 {
     $manager = new TraceManager();
     $file1 = $manager->start();
     $file2 = $manager->start();
     $this->assertEquals($file1, $file2);
     $manager->stop();
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function stop()
 {
     parent::stop();
     $this->traceManager->stop();
 }