mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-01 18:10:06 +00:00
Various code cleanup.
This commit is contained in:
@@ -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()
|
||||
{
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user