Files
view/tests/ViewTest.php

15 lines
401 B
PHP

<?php
require_once 'BladeTests.php';
class ViewTest extends BladeTests
{
public function testRender(): void
{
$response = $this->getResponse();
$view = new View\Implement\View($this->templatesFolder, $this->cacheFolder);
$result = $view->render($response, $this->templateName);
$this->assertEquals($this->template, $result->getBody()->getContents());
}
}