コード例 #1
0
 /**
  * @covers Veles\View\Adapters\NativeAdapter::show
  */
 public function testShow()
 {
     $this->object->setTemplateDir($this->dir);
     $this->object->set(['a' => 'la', 'b' => 'lala', 'c' => 'Hello']);
     $this->expectOutputString($this->html);
     $this->object->show('Frontend/index.phtml');
 }