* @copyright 2015 - 2016 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @version 1.0.0 * @link https://git.timshomepage.net/timw4mail/ion */ namespace Aviat\Ion\Tests\View; use Aviat\Ion\Tests\TestHtmlView; use function _dir; class HtmlViewTest extends HttpViewTest { protected $template_path; public function setUp() { parent::setUp(); $this->view = new TestHtmlView($this->container); } public function testRenderTemplate() { $path = _dir(self::TEST_VIEW_DIR, 'test_view.php'); $expected = 'foo'; $actual = $this->view->render_template($path, [ 'var' => 'foo' ]); $this->assertEquals($expected, $actual); } }