Files
view/tests/ViewTest.php

15 lines
401 B
PHP
Raw Permalink Normal View History

2025-09-29 12:33:56 -03:00
<?php
2025-09-29 13:37:26 -03:00
require_once 'BladeTests.php';
2025-09-29 12:33:56 -03:00
2025-09-29 13:37:26 -03:00
class ViewTest extends BladeTests
2025-09-29 12:33:56 -03:00
{
public function testRender(): void
{
2025-09-29 13:37:26 -03:00
$response = $this->getResponse();
2025-09-29 12:33:56 -03:00
2025-09-29 13:37:26 -03:00
$view = new View\Implement\View($this->templatesFolder, $this->cacheFolder);
2025-09-29 12:33:56 -03:00
2025-09-29 13:37:26 -03:00
$result = $view->render($response, $this->templateName);
$this->assertEquals($this->template, $result->getBody()->getContents());
2025-09-29 12:33:56 -03:00
}
}