New (not implemented) tests.

This commit is contained in:
James Cole 2016-11-20 12:53:04 +01:00
parent 350e0b08b1
commit ec4ec1a147
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -2,11 +2,12 @@
/**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14.
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 11:51:45.
*/
class TransactionControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@ -17,6 +18,14 @@ class TransactionControllerTest 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\TransactionController::index
* @todo Implement testIndex().
@ -29,6 +38,30 @@ class TransactionControllerTest extends TestCase
);
}
/**
* @covers FireflyIII\Http\Controllers\TransactionController::indexAll
* @todo Implement testIndexAll().
*/
public function testIndexAll()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\TransactionController::indexDate
* @todo Implement testIndexDate().
*/
public function testIndexDate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\TransactionController::reorder
* @todo Implement testReorder().
@ -52,12 +85,4 @@ class TransactionControllerTest 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()
{
}
}