diff --git a/tests/acceptance/Controllers/TransactionControllerTest.php b/tests/acceptance/Controllers/TransactionControllerTest.php index fb16bd53de..b1ebfe89bf 100644 --- a/tests/acceptance/Controllers/TransactionControllerTest.php +++ b/tests/acceptance/Controllers/TransactionControllerTest.php @@ -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() - { - } }