mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-15 18:23:26 +03:00
- Added event-arguments data. - Added event-arguments to the event list in documentation. - Fixed missing exceptions thrown in phpDocs. - Added unit-tests for new event functionality.
35 lines
630 B
PHP
35 lines
630 B
PHP
<?php
|
|
|
|
require_once 'Dummy/DummyMiddleware.php';
|
|
require_once 'Dummy/DummyController.php';
|
|
require_once 'Dummy/Handler/ExceptionHandler.php';
|
|
|
|
class InputHandlerTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
|
|
public function testGet()
|
|
{
|
|
$this->assertEquals(true, true);
|
|
}
|
|
|
|
public function testPost()
|
|
{
|
|
$this->assertEquals(true, true);
|
|
}
|
|
|
|
public function testFile()
|
|
{
|
|
$this->assertEquals(true, true);
|
|
}
|
|
|
|
public function testFiles()
|
|
{
|
|
$this->assertEquals(true, true);
|
|
}
|
|
|
|
public function testAll()
|
|
{
|
|
$this->assertEquals(true, true);
|
|
}
|
|
|
|
} |