Files
oficial/app_old/aldarien/view/tests/ViewTest.php

22 lines
275 B
PHP
Raw Normal View History

2023-07-24 20:41:38 -04:00
<?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'));
}
}
?>