Files
view/tests/BladeTest.php

15 lines
411 B
PHP
Raw Normal View History

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