コード例 #1
0
 /**
  * @test
  * @group adapter-highlight
  * @group adapter
  **/
 public function 指定ファイルの内容をハイライト表示する()
 {
     $this->sf->setFilePath(ROOT . '/data/Adapter/SampleData.txt');
     $this->sf->showHighlight();
     $result = file_get_contents(ROOT . '/data/Adapter/HighLightResult.html');
     $this->expectOutputString($result);
 }
コード例 #2
0
 /**
  * 指定ファイの内容をハイライト表示する
  *
  * @return void
  **/
 public function display()
 {
     $this->sf->showHighlight();
 }