Files
oficial/app_old/aldarien/view/tests/ViewTest.php
Juan Pablo Vial be33305cf1 config
2023-07-24 20:41:38 -04:00

22 lines
275 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class ViewTest extends TestCase
{
public function testView()
{
$output = <<<DATA
<!DOCTYPE html>
<html>
<head>
<title>View</title>
</head>
<body>
View test
</body>
</html>
DATA;
$this->assertEquals($output, view('base'));
}
}
?>