Files
oficial/aldarien/view/tests/ViewTest.php
2021-03-25 21:23:29 -03: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'));
}
}
?>