compileViews() public method

Build views in order to parse php files
public compileViews ( array $viewPaths, string $domain ) : boolean
$viewPaths array
$domain string
return boolean
 /**
  * View compiler tests
  */
 public function testCompileViews()
 {
     $viewPaths = ['views'];
     $result = $this->fileSystem->compileViews($viewPaths, "frontend");
     $this->assertTrue($result);
 }