Remove todo annotations.

This commit is contained in:
James Cole
2016-11-26 08:55:26 +01:00
parent 7efaf51595
commit 1453a78e49
48 changed files with 293 additions and 291 deletions

View File

@@ -4,7 +4,7 @@ namespace Admin;
use TestCase;
/**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:07.
* Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:16.
*/
class ConfigurationControllerTest extends TestCase
{
@@ -20,18 +20,20 @@ class ConfigurationControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController::index
* @covers FireflyIII\Http\Controllers\Admin\ConfigurationController::index
* Implement testIndex().
*/
public function testIndex()
{
$this->be($this->user());
$this->call('GET', route('admin.configuration.index'));
$this->assertResponseStatus(200);
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController::store
* @todo Implement testStore().
* @covers FireflyIII\Http\Controllers\Admin\ConfigurationController::store
* Implement testStore().
*/
public function testStore()
{