From 2dfa51652acee5be5704826d70e111c9b5915b6b Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 20 Jan 2016 06:20:09 +0100 Subject: [PATCH] Basic set of tests (incomplete). --- .../Controllers/AttachmentControllerTest.php | 87 +++++++++ .../Controllers/Auth/AuthControllerTest.php | 148 +++++++++++++++ .../Auth/PasswordControllerTest.php | 135 ++++++++++++++ .../Controllers/BillControllerTest.php | 124 +++++++++++++ .../Controllers/BudgetControllerTest.php | 159 ++++++++++++++++ .../Controllers/CategoryControllerTest.php | 136 ++++++++++++++ .../Chart/ChartAccountControllerTest.php | 62 +++++++ .../Chart/ChartBillControllerTest.php | 39 ++++ .../Chart/ChartBudgetControllerTest.php | 75 ++++++++ .../Chart/ChartCategoryControllerTest.php | 99 ++++++++++ .../Chart/ChartPiggyBankControllerTest.php | 27 +++ .../Chart/ChartReportControllerTest.php | 38 ++++ .../acceptance/Controllers/ControllerTest.php | 63 +++++++ .../Controllers/CsvControllerTest.php | 123 +++++++++++++ .../Controllers/CurrencyControllerTest.php | 112 ++++++++++++ .../Controllers/HelpControllerTest.php | 28 +++ .../Controllers/JsonControllerTest.php | 172 ++++++++++++++++++ .../Controllers/NewUserControllerTest.php | 40 ++++ .../Controllers/PiggyBankControllerTest.php | 171 +++++++++++++++++ .../Controllers/PreferencesControllerTest.php | 40 ++++ .../Controllers/ProfileControllerTest.php | 75 ++++++++ .../Controllers/ReportControllerTest.php | 75 ++++++++ .../Controllers/RuleControllerTest.php | 148 +++++++++++++++ .../Controllers/RuleGroupControllerTest.php | 112 ++++++++++++ .../Controllers/SearchControllerTest.php | 27 +++ .../Controllers/TagControllerTest.php | 124 +++++++++++++ .../Controllers/TransactionControllerTest.php | 124 +++++++++++++ 27 files changed, 2563 insertions(+) create mode 100644 tests/acceptance/Controllers/AttachmentControllerTest.php create mode 100644 tests/acceptance/Controllers/Auth/AuthControllerTest.php create mode 100644 tests/acceptance/Controllers/Auth/PasswordControllerTest.php create mode 100644 tests/acceptance/Controllers/BillControllerTest.php create mode 100644 tests/acceptance/Controllers/BudgetControllerTest.php create mode 100644 tests/acceptance/Controllers/CategoryControllerTest.php create mode 100644 tests/acceptance/Controllers/Chart/ChartAccountControllerTest.php create mode 100644 tests/acceptance/Controllers/Chart/ChartBillControllerTest.php create mode 100644 tests/acceptance/Controllers/Chart/ChartBudgetControllerTest.php create mode 100644 tests/acceptance/Controllers/Chart/ChartCategoryControllerTest.php create mode 100644 tests/acceptance/Controllers/Chart/ChartPiggyBankControllerTest.php create mode 100644 tests/acceptance/Controllers/Chart/ChartReportControllerTest.php create mode 100644 tests/acceptance/Controllers/ControllerTest.php create mode 100644 tests/acceptance/Controllers/CsvControllerTest.php create mode 100644 tests/acceptance/Controllers/CurrencyControllerTest.php create mode 100644 tests/acceptance/Controllers/HelpControllerTest.php create mode 100644 tests/acceptance/Controllers/JsonControllerTest.php create mode 100644 tests/acceptance/Controllers/NewUserControllerTest.php create mode 100644 tests/acceptance/Controllers/PiggyBankControllerTest.php create mode 100644 tests/acceptance/Controllers/PreferencesControllerTest.php create mode 100644 tests/acceptance/Controllers/ProfileControllerTest.php create mode 100644 tests/acceptance/Controllers/ReportControllerTest.php create mode 100644 tests/acceptance/Controllers/RuleControllerTest.php create mode 100644 tests/acceptance/Controllers/RuleGroupControllerTest.php create mode 100644 tests/acceptance/Controllers/SearchControllerTest.php create mode 100644 tests/acceptance/Controllers/TagControllerTest.php create mode 100644 tests/acceptance/Controllers/TransactionControllerTest.php diff --git a/tests/acceptance/Controllers/AttachmentControllerTest.php b/tests/acceptance/Controllers/AttachmentControllerTest.php new file mode 100644 index 0000000000..caa9520859 --- /dev/null +++ b/tests/acceptance/Controllers/AttachmentControllerTest.php @@ -0,0 +1,87 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\AttachmentController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\AttachmentController::download + * @todo Implement testDownload(). + */ + public function testDownload() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\AttachmentController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\AttachmentController::preview + * @todo Implement testPreview(). + */ + public function testPreview() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\AttachmentController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/Auth/AuthControllerTest.php b/tests/acceptance/Controllers/Auth/AuthControllerTest.php new file mode 100644 index 0000000000..2f96a5770a --- /dev/null +++ b/tests/acceptance/Controllers/Auth/AuthControllerTest.php @@ -0,0 +1,148 @@ +call('GET', '/login'); + $this->assertEquals(200, $response->status()); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::getLogout + */ + public function testGetLogout() + { + $this->be($this->user()); + $response = $this->call('GET', '/logout'); + $this->assertEquals(302, $response->status()); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::getRegister + */ + public function testGetRegister() + { + $response = $this->call('GET', '/register'); + $this->assertEquals(200, $response->status()); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::login + */ + public function testLogin() + { + $response = $this->call('GET', '/login'); + $this->assertSessionHas('isLoggedIn', 'yes'); + $this->assertEquals(200, $response->status()); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::logout + */ + public function testLogout() + { + $this->be($this->user()); + $response = $this->call('GET', '/logout'); + $this->assertEquals(302, $response->status()); + // index should now redirect: + $response = $this->call('GET', '/'); + $this->assertEquals(302, $response->status()); + + + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::postLogin + */ + public function testPostLogin() + { + $args = [ + 'email' => 'thegrumpydictator@gmail.com', + 'password' => 'james', + 'remember' => 1, + '_token' => Session::token(), + ]; + $response = $this->call('POST', '/login', $args); + $this->assertEquals(302, $response->status()); + $this->assertSessionHas('isLoggedIn', 'yes'); + + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::postRegister + */ + public function testPostRegister() + { + $args = [ + 'email' => 'thegrumpydictator+test@gmail.com', + 'password' => 'james123', + 'password_confirmation' => 'james123', + ]; + $response = $this->call('POST', '/register', $args); + $this->assertEquals(302, $response->status()); + $this->assertSessionHas('start'); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::redirectPath + * @todo Implement testRedirectPath(). + */ + public function testRedirectPath() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::register + * @todo Implement testRegister(). + */ + public function testRegister() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::showLoginForm + * @todo Implement testShowLoginForm(). + */ + public function testShowLoginForm() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\AuthController::showRegistrationForm + * @todo Implement testShowRegistrationForm(). + */ + public function testShowRegistrationForm() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/Auth/PasswordControllerTest.php b/tests/acceptance/Controllers/Auth/PasswordControllerTest.php new file mode 100644 index 0000000000..3f942b689d --- /dev/null +++ b/tests/acceptance/Controllers/Auth/PasswordControllerTest.php @@ -0,0 +1,135 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::getEmail + * @todo Implement testGetEmail(). + */ + public function testGetEmail() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::getReset + * @todo Implement testGetReset(). + */ + public function testGetReset() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::postEmail + * @todo Implement testPostEmail(). + */ + public function testPostEmail() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::postReset + * @todo Implement testPostReset(). + */ + public function testPostReset() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::redirectPath + * @todo Implement testRedirectPath(). + */ + public function testRedirectPath() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::reset + * @todo Implement testReset(). + */ + public function testReset() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::sendResetLinkEmail + * @todo Implement testSendResetLinkEmail(). + */ + public function testSendResetLinkEmail() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::showLinkRequestForm + * @todo Implement testShowLinkRequestForm(). + */ + public function testShowLinkRequestForm() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Auth\PasswordController::showResetForm + * @todo Implement testShowResetForm(). + */ + public function testShowResetForm() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/BillControllerTest.php b/tests/acceptance/Controllers/BillControllerTest.php new file mode 100644 index 0000000000..9062569f90 --- /dev/null +++ b/tests/acceptance/Controllers/BillControllerTest.php @@ -0,0 +1,124 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BillController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BillController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BillController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BillController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BillController::rescan + * @todo Implement testRescan(). + */ + public function testRescan() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BillController::show + * @todo Implement testShow(). + */ + public function testShow() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BillController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BillController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/BudgetControllerTest.php b/tests/acceptance/Controllers/BudgetControllerTest.php new file mode 100644 index 0000000000..bfceaab89d --- /dev/null +++ b/tests/acceptance/Controllers/BudgetControllerTest.php @@ -0,0 +1,159 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::create + * @todo Implement testCreate(). + */ + public function testCreate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::noBudget + * @todo Implement testNoBudget(). + */ + public function testNoBudget() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::postUpdateIncome + * @todo Implement testPostUpdateIncome(). + */ + public function testPostUpdateIncome() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::show + * @todo Implement testShow(). + */ + public function testShow() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\BudgetController::updateIncome + * @todo Implement testUpdateIncome(). + */ + public function testUpdateIncome() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/CategoryControllerTest.php b/tests/acceptance/Controllers/CategoryControllerTest.php new file mode 100644 index 0000000000..9ad44bf07c --- /dev/null +++ b/tests/acceptance/Controllers/CategoryControllerTest.php @@ -0,0 +1,136 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::noCategory + * @todo Implement testNoCategory(). + */ + public function testNoCategory() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::show + * @todo Implement testShow(). + */ + public function testShow() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::showWithDate + * @todo Implement testShowWithDate(). + */ + public function testShowWithDate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CategoryController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/Chart/ChartAccountControllerTest.php b/tests/acceptance/Controllers/Chart/ChartAccountControllerTest.php new file mode 100644 index 0000000000..2aebba6630 --- /dev/null +++ b/tests/acceptance/Controllers/Chart/ChartAccountControllerTest.php @@ -0,0 +1,62 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\AccountController::frontpage + * @todo Implement testFrontpage(). + */ + public function testFrontpage() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\AccountController::report + * @todo Implement testReport(). + */ + public function testReport() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\AccountController::single + * @todo Implement testSingle(). + */ + public function testSingle() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/Chart/ChartBillControllerTest.php b/tests/acceptance/Controllers/Chart/ChartBillControllerTest.php new file mode 100644 index 0000000000..15d7f4bcb4 --- /dev/null +++ b/tests/acceptance/Controllers/Chart/ChartBillControllerTest.php @@ -0,0 +1,39 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\BillController::single + * @todo Implement testSingle(). + */ + public function testSingle() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/Chart/ChartBudgetControllerTest.php b/tests/acceptance/Controllers/Chart/ChartBudgetControllerTest.php new file mode 100644 index 0000000000..887112e330 --- /dev/null +++ b/tests/acceptance/Controllers/Chart/ChartBudgetControllerTest.php @@ -0,0 +1,75 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\BudgetController::budgetLimit + * @todo Implement testBudgetLimit(). + */ + public function testBudgetLimit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\BudgetController::frontpage + * @todo Implement testFrontpage(). + */ + public function testFrontpage() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\BudgetController::multiYear + * @todo Implement testMultiYear(). + */ + public function testMultiYear() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\BudgetController::year + * @todo Implement testYear(). + */ + public function testYear() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/Chart/ChartCategoryControllerTest.php b/tests/acceptance/Controllers/Chart/ChartCategoryControllerTest.php new file mode 100644 index 0000000000..6d16e67578 --- /dev/null +++ b/tests/acceptance/Controllers/Chart/ChartCategoryControllerTest.php @@ -0,0 +1,99 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\CategoryController::currentPeriod + * @todo Implement testCurrentPeriod(). + */ + public function testCurrentPeriod() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\CategoryController::earnedInPeriod + * @todo Implement testEarnedInPeriod(). + */ + public function testEarnedInPeriod() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\CategoryController::frontpage + * @todo Implement testFrontpage(). + */ + public function testFrontpage() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\CategoryController::multiYear + * @todo Implement testMultiYear(). + */ + public function testMultiYear() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\CategoryController::specificPeriod + * @todo Implement testSpecificPeriod(). + */ + public function testSpecificPeriod() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\CategoryController::spentInPeriod + * @todo Implement testSpentInPeriod(). + */ + public function testSpentInPeriod() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/Chart/ChartPiggyBankControllerTest.php b/tests/acceptance/Controllers/Chart/ChartPiggyBankControllerTest.php new file mode 100644 index 0000000000..b514cf48bf --- /dev/null +++ b/tests/acceptance/Controllers/Chart/ChartPiggyBankControllerTest.php @@ -0,0 +1,27 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/Chart/ChartReportControllerTest.php b/tests/acceptance/Controllers/Chart/ChartReportControllerTest.php new file mode 100644 index 0000000000..8f8c932089 --- /dev/null +++ b/tests/acceptance/Controllers/Chart/ChartReportControllerTest.php @@ -0,0 +1,38 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Chart\ReportController::yearInOutSummarized + * @todo Implement testYearInOutSummarized(). + */ + public function testYearInOutSummarized() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/ControllerTest.php b/tests/acceptance/Controllers/ControllerTest.php new file mode 100644 index 0000000000..374c3050df --- /dev/null +++ b/tests/acceptance/Controllers/ControllerTest.php @@ -0,0 +1,63 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Controller::authorizeForUser + * @todo Implement testAuthorizeForUser(). + */ + public function testAuthorizeForUser() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Controller::validate + * @todo Implement testValidate(). + */ + public function testValidate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\Controller::validateWithBag + * @todo Implement testValidateWithBag(). + */ + public function testValidateWithBag() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/CsvControllerTest.php b/tests/acceptance/Controllers/CsvControllerTest.php new file mode 100644 index 0000000000..22301ee276 --- /dev/null +++ b/tests/acceptance/Controllers/CsvControllerTest.php @@ -0,0 +1,123 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CsvController::downloadConfig + * @todo Implement testDownloadConfig(). + */ + public function testDownloadConfig() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CsvController::downloadConfigPage + * @todo Implement testDownloadConfigPage(). + */ + public function testDownloadConfigPage() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CsvController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CsvController::initialParse + * @todo Implement testInitialParse(). + */ + public function testInitialParse() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CsvController::map + * @todo Implement testMap(). + */ + public function testMap() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CsvController::process + * @todo Implement testProcess(). + */ + public function testProcess() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CsvController::saveMapping + * @todo Implement testSaveMapping(). + */ + public function testSaveMapping() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CsvController::upload + * @todo Implement testUpload(). + */ + public function testUpload() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/CurrencyControllerTest.php b/tests/acceptance/Controllers/CurrencyControllerTest.php new file mode 100644 index 0000000000..1418ed53da --- /dev/null +++ b/tests/acceptance/Controllers/CurrencyControllerTest.php @@ -0,0 +1,112 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CurrencyController::defaultCurrency + * @todo Implement testDefaultCurrency(). + */ + public function testDefaultCurrency() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CurrencyController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CurrencyController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CurrencyController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CurrencyController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CurrencyController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\CurrencyController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/HelpControllerTest.php b/tests/acceptance/Controllers/HelpControllerTest.php new file mode 100644 index 0000000000..18157806bf --- /dev/null +++ b/tests/acceptance/Controllers/HelpControllerTest.php @@ -0,0 +1,28 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/JsonControllerTest.php b/tests/acceptance/Controllers/JsonControllerTest.php new file mode 100644 index 0000000000..fa5861b60d --- /dev/null +++ b/tests/acceptance/Controllers/JsonControllerTest.php @@ -0,0 +1,172 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::boxBillsPaid + * @todo Implement testBoxBillsPaid(). + */ + public function testBoxBillsPaid() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::boxBillsUnpaid + * @todo Implement testBoxBillsUnpaid(). + */ + public function testBoxBillsUnpaid() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::boxIn + * @todo Implement testBoxIn(). + */ + public function testBoxIn() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::boxOut + * @todo Implement testBoxOut(). + */ + public function testBoxOut() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::categories + * @todo Implement testCategories(). + */ + public function testCategories() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::endTour + * @todo Implement testEndTour(). + */ + public function testEndTour() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::expenseAccounts + * @todo Implement testExpenseAccounts(). + */ + public function testExpenseAccounts() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::revenueAccounts + * @todo Implement testRevenueAccounts(). + */ + public function testRevenueAccounts() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::tags + * @todo Implement testTags(). + */ + public function testTags() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::tour + * @todo Implement testTour(). + */ + public function testTour() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::transactionJournals + * @todo Implement testTransactionJournals(). + */ + public function testTransactionJournals() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\JsonController::trigger + * @todo Implement testTrigger(). + */ + public function testTrigger() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/NewUserControllerTest.php b/tests/acceptance/Controllers/NewUserControllerTest.php new file mode 100644 index 0000000000..9b27d98a94 --- /dev/null +++ b/tests/acceptance/Controllers/NewUserControllerTest.php @@ -0,0 +1,40 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\NewUserController::submit + * @todo Implement testSubmit(). + */ + public function testSubmit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/PiggyBankControllerTest.php b/tests/acceptance/Controllers/PiggyBankControllerTest.php new file mode 100644 index 0000000000..5a8ea4618a --- /dev/null +++ b/tests/acceptance/Controllers/PiggyBankControllerTest.php @@ -0,0 +1,171 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::create + * @todo Implement testCreate(). + */ + public function testCreate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::order + * @todo Implement testOrder(). + */ + public function testOrder() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::postAdd + * @todo Implement testPostAdd(). + */ + public function testPostAdd() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::postRemove + * @todo Implement testPostRemove(). + */ + public function testPostRemove() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::remove + * @todo Implement testRemove(). + */ + public function testRemove() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::show + * @todo Implement testShow(). + */ + public function testShow() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PiggyBankController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/PreferencesControllerTest.php b/tests/acceptance/Controllers/PreferencesControllerTest.php new file mode 100644 index 0000000000..4fbf98a051 --- /dev/null +++ b/tests/acceptance/Controllers/PreferencesControllerTest.php @@ -0,0 +1,40 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\PreferencesController::postIndex + * @todo Implement testPostIndex(). + */ + public function testPostIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/ProfileControllerTest.php b/tests/acceptance/Controllers/ProfileControllerTest.php new file mode 100644 index 0000000000..ffdf216572 --- /dev/null +++ b/tests/acceptance/Controllers/ProfileControllerTest.php @@ -0,0 +1,75 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\ProfileController::deleteAccount + * @todo Implement testDeleteAccount(). + */ + public function testDeleteAccount() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\ProfileController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\ProfileController::postChangePassword + * @todo Implement testPostChangePassword(). + */ + public function testPostChangePassword() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\ProfileController::postDeleteAccount + * @todo Implement testPostDeleteAccount(). + */ + public function testPostDeleteAccount() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/ReportControllerTest.php b/tests/acceptance/Controllers/ReportControllerTest.php new file mode 100644 index 0000000000..641f7def38 --- /dev/null +++ b/tests/acceptance/Controllers/ReportControllerTest.php @@ -0,0 +1,75 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\ReportController::defaultMultiYear + * @todo Implement testDefaultMultiYear(). + */ + public function testDefaultMultiYear() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\ReportController::defaultYear + * @todo Implement testDefaultYear(). + */ + public function testDefaultYear() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\ReportController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\ReportController::report + * @todo Implement testReport(). + */ + public function testReport() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/RuleControllerTest.php b/tests/acceptance/Controllers/RuleControllerTest.php new file mode 100644 index 0000000000..b33352c035 --- /dev/null +++ b/tests/acceptance/Controllers/RuleControllerTest.php @@ -0,0 +1,148 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::down + * @todo Implement testDown(). + */ + public function testDown() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::reorderRuleActions + * @todo Implement testReorderRuleActions(). + */ + public function testReorderRuleActions() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::reorderRuleTriggers + * @todo Implement testReorderRuleTriggers(). + */ + public function testReorderRuleTriggers() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::up + * @todo Implement testUp(). + */ + public function testUp() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/RuleGroupControllerTest.php b/tests/acceptance/Controllers/RuleGroupControllerTest.php new file mode 100644 index 0000000000..f23e52417c --- /dev/null +++ b/tests/acceptance/Controllers/RuleGroupControllerTest.php @@ -0,0 +1,112 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleGroupController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleGroupController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleGroupController::down + * @todo Implement testDown(). + */ + public function testDown() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleGroupController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleGroupController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleGroupController::up + * @todo Implement testUp(). + */ + public function testUp() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\RuleGroupController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/SearchControllerTest.php b/tests/acceptance/Controllers/SearchControllerTest.php new file mode 100644 index 0000000000..70f44bc0bc --- /dev/null +++ b/tests/acceptance/Controllers/SearchControllerTest.php @@ -0,0 +1,27 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/TagControllerTest.php b/tests/acceptance/Controllers/TagControllerTest.php new file mode 100644 index 0000000000..8aa3cad951 --- /dev/null +++ b/tests/acceptance/Controllers/TagControllerTest.php @@ -0,0 +1,124 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TagController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TagController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TagController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TagController::hideTagHelp + * @todo Implement testHideTagHelp(). + */ + public function testHideTagHelp() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TagController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TagController::show + * @todo Implement testShow(). + */ + public function testShow() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TagController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TagController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/tests/acceptance/Controllers/TransactionControllerTest.php b/tests/acceptance/Controllers/TransactionControllerTest.php new file mode 100644 index 0000000000..937acaccb8 --- /dev/null +++ b/tests/acceptance/Controllers/TransactionControllerTest.php @@ -0,0 +1,124 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TransactionController::delete + * @todo Implement testDelete(). + */ + public function testDelete() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TransactionController::destroy + * @todo Implement testDestroy(). + */ + public function testDestroy() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TransactionController::edit + * @todo Implement testEdit(). + */ + public function testEdit() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TransactionController::index + * @todo Implement testIndex(). + */ + public function testIndex() + { + // 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(). + */ + public function testReorder() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TransactionController::show + * @todo Implement testShow(). + */ + public function testShow() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TransactionController::store + * @todo Implement testStore(). + */ + public function testStore() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers FireflyIII\Http\Controllers\TransactionController::update + * @todo Implement testUpdate(). + */ + public function testUpdate() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +}