Development

- 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.
This commit is contained in:
Simon Sessingø
2018-03-29 18:51:28 +02:00
parent a9c03f9271
commit f5a023117a
11 changed files with 162 additions and 70 deletions
+10 -5
View File
@@ -7,23 +7,28 @@ require_once 'Dummy/Handler/ExceptionHandler.php';
class InputHandlerTest extends \PHPUnit\Framework\TestCase
{
public function testGet() {
public function testGet()
{
$this->assertEquals(true, true);
}
public function testPost() {
public function testPost()
{
$this->assertEquals(true, true);
}
public function testFile() {
public function testFile()
{
$this->assertEquals(true, true);
}
public function testFiles() {
public function testFiles()
{
$this->assertEquals(true, true);
}
public function testAll() {
public function testAll()
{
$this->assertEquals(true, true);
}