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

22 lines
375 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class ResponseTest extends TestCase
{
protected $value = 'Test';
public function setUp()
{
$_GET['test'] = $this->value;
$_POST['test'] = $this->value;
}
public function testGet()
{
$this->assertEquals($this->value, get('test'));
}
public function testPost()
{
$this->assertEquals($this->value, post('test'));
}
}
?>