Various code cleanup.

This commit is contained in:
James Cole
2016-11-20 11:43:19 +01:00
parent 75a524c656
commit 94875adb6c
60 changed files with 544 additions and 563 deletions

View File

@@ -7,7 +7,6 @@
class ControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@@ -18,14 +17,6 @@ class ControllerTest extends TestCase
parent::setUp();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FireflyIII\Http\Controllers\Controller::authorize
* @todo Implement testAuthorize().
@@ -75,10 +66,10 @@ class ControllerTest extends TestCase
}
/**
* @covers FireflyIII\Http\Controllers\Controller::validateWith
* @todo Implement testValidateWith().
* @covers FireflyIII\Http\Controllers\Controller::validate
* @todo Implement testValidate().
*/
public function testValidateWith()
public function testValidate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
@@ -87,10 +78,10 @@ class ControllerTest extends TestCase
}
/**
* @covers FireflyIII\Http\Controllers\Controller::validate
* @todo Implement testValidate().
* @covers FireflyIII\Http\Controllers\Controller::validateWith
* @todo Implement testValidateWith().
*/
public function testValidate()
public function testValidateWith()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
@@ -109,4 +100,12 @@ class ControllerTest extends TestCase
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}