mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
42 lines
No EOL
938 B
PHP
42 lines
No EOL
938 B
PHP
<?php
|
|
|
|
require_once 'Dummy/DummyController.php';
|
|
require_once 'Helpers/TestRouter.php';
|
|
|
|
class RouterControllerTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
public function testGet()
|
|
{
|
|
// Match normal route on alias
|
|
TestRouter::controller('/url', 'DummyController');
|
|
|
|
$response = TestRouter::debugOutput('/url/test', 'get');
|
|
|
|
$this->assertEquals('getTest', $response);
|
|
|
|
}
|
|
|
|
public function testPost()
|
|
{
|
|
// Match normal route on alias
|
|
TestRouter::controller('/url', 'DummyController');
|
|
|
|
$response = TestRouter::debugOutput('/url/test', 'post');
|
|
|
|
$this->assertEquals('postTest', $response);
|
|
|
|
}
|
|
|
|
public function testPut()
|
|
{
|
|
// Match normal route on alias
|
|
TestRouter::controller('/url', 'DummyController');
|
|
|
|
$response = TestRouter::debugOutput('/url/test', 'put');
|
|
|
|
$this->assertEquals('putTest', $response);
|
|
|
|
}
|
|
|
|
} |