Example #1
0
 /**
  * Set the template path 
  */
 public function setUp()
 {
     $path = __DIR__ . DIRECTORY_SEPARATOR . "views" . DIRECTORY_SEPARATOR;
     $finder = new \Owl\Finder\FileSystem($path);
     \Owl\View::setFinder($finder);
     $this->layout = new LayoutView();
     $this->view = new BaseView();
     parent::setUp();
 }