/** * @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); }
/** * 指定ファイの内容をハイライト表示する * * @return void **/ public function display() { $this->sf->showHighlight(); }