From 90b3bd77e7b991af13af5e7cce54f7f7841a1b27 Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 18 Nov 2014 10:11:18 +0100 Subject: [PATCH] Empty tests. --- app/tests/AccountControllerTest.php | 123 +++++++++++++++ app/tests/BudgetControllerTest.php | 159 +++++++++++++++++++ app/tests/CategoryControllerTest.php | 123 +++++++++++++++ app/tests/GoogleChartControllerTest.php | 195 ++++++++++++++++++++++++ app/tests/HomeControllerTest.php | 87 +++++++++++ app/tests/JsonControllerTest.php | 63 ++++++++ app/tests/PiggybankControllerTest.php | 171 +++++++++++++++++++++ app/tests/PreferencesControllerTest.php | 51 +++++++ app/tests/ProfileControllerTest.php | 63 ++++++++ app/tests/RecurringControllerTest.php | 135 ++++++++++++++++ app/tests/ReminderControllerTest.php | 39 +++++ app/tests/ReportControllerTest.php | 51 +++++++ app/tests/SearchControllerTest.php | 39 +++++ app/tests/TransactionControllerTest.php | 123 +++++++++++++++ app/tests/UserControllerTest.php | 123 +++++++++++++++ 15 files changed, 1545 insertions(+) create mode 100644 app/tests/AccountControllerTest.php create mode 100644 app/tests/BudgetControllerTest.php create mode 100644 app/tests/CategoryControllerTest.php create mode 100644 app/tests/GoogleChartControllerTest.php create mode 100644 app/tests/HomeControllerTest.php create mode 100644 app/tests/JsonControllerTest.php create mode 100644 app/tests/PiggybankControllerTest.php create mode 100644 app/tests/PreferencesControllerTest.php create mode 100644 app/tests/ProfileControllerTest.php create mode 100644 app/tests/RecurringControllerTest.php create mode 100644 app/tests/ReminderControllerTest.php create mode 100644 app/tests/ReportControllerTest.php create mode 100644 app/tests/SearchControllerTest.php create mode 100644 app/tests/TransactionControllerTest.php create mode 100644 app/tests/UserControllerTest.php diff --git a/app/tests/AccountControllerTest.php b/app/tests/AccountControllerTest.php new file mode 100644 index 0000000000..dbc9a98d18 --- /dev/null +++ b/app/tests/AccountControllerTest.php @@ -0,0 +1,123 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers AccountController::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 AccountController::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 AccountController::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 AccountController::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 AccountController::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 AccountController::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 AccountController::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/app/tests/BudgetControllerTest.php b/app/tests/BudgetControllerTest.php new file mode 100644 index 0000000000..c2565580d5 --- /dev/null +++ b/app/tests/BudgetControllerTest.php @@ -0,0 +1,159 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers 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 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 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 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 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 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 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 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 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 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/app/tests/CategoryControllerTest.php b/app/tests/CategoryControllerTest.php new file mode 100644 index 0000000000..b2468dfe3e --- /dev/null +++ b/app/tests/CategoryControllerTest.php @@ -0,0 +1,123 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers 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 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 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 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 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 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 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/app/tests/GoogleChartControllerTest.php b/app/tests/GoogleChartControllerTest.php new file mode 100644 index 0000000000..5ac24dcaec --- /dev/null +++ b/app/tests/GoogleChartControllerTest.php @@ -0,0 +1,195 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::accountSankeyInChart + * @todo Implement testAccountSankeyInChart(). + */ + public function testAccountSankeyInChart() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::accountSankeyOutChart + * @todo Implement testAccountSankeyOutChart(). + */ + public function testAccountSankeyOutChart() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::allAccountsBalanceChart + * @todo Implement testAllAccountsBalanceChart(). + */ + public function testAllAccountsBalanceChart() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::allBudgetsHomeChart + * @todo Implement testAllBudgetsHomeChart(). + */ + public function testAllBudgetsHomeChart() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::allCategoriesHomeChart + * @todo Implement testAllCategoriesHomeChart(). + */ + public function testAllCategoriesHomeChart() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::budgetLimitSpending + * @todo Implement testBudgetLimitSpending(). + */ + public function testBudgetLimitSpending() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::budgetsReportChart + * @todo Implement testBudgetsReportChart(). + */ + public function testBudgetsReportChart() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::componentsAndSpending + * @todo Implement testComponentsAndSpending(). + */ + public function testComponentsAndSpending() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::piggyBankHistory + * @todo Implement testPiggyBankHistory(). + */ + public function testPiggyBankHistory() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::recurringOverview + * @todo Implement testRecurringOverview(). + */ + public function testRecurringOverview() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::recurringTransactionsOverview + * @todo Implement testRecurringTransactionsOverview(). + */ + public function testRecurringTransactionsOverview() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::yearInExp + * @todo Implement testYearInExp(). + */ + public function testYearInExp() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers GoogleChartController::yearInExpSum + * @todo Implement testYearInExpSum(). + */ + public function testYearInExpSum() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/app/tests/HomeControllerTest.php b/app/tests/HomeControllerTest.php new file mode 100644 index 0000000000..7157067a7a --- /dev/null +++ b/app/tests/HomeControllerTest.php @@ -0,0 +1,87 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers HomeController::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 HomeController::rangeJump + * @todo Implement testRangeJump(). + */ + public function testRangeJump() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers HomeController::sessionNext + * @todo Implement testSessionNext(). + */ + public function testSessionNext() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers HomeController::sessionPrev + * @todo Implement testSessionPrev(). + */ + public function testSessionPrev() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/app/tests/JsonControllerTest.php b/app/tests/JsonControllerTest.php new file mode 100644 index 0000000000..d382ae68bd --- /dev/null +++ b/app/tests/JsonControllerTest.php @@ -0,0 +1,63 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers 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 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.' + ); + } +} diff --git a/app/tests/PiggybankControllerTest.php b/app/tests/PiggybankControllerTest.php new file mode 100644 index 0000000000..53c5a18242 --- /dev/null +++ b/app/tests/PiggybankControllerTest.php @@ -0,0 +1,171 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers 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 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 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 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 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 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 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 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 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 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 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/app/tests/PreferencesControllerTest.php b/app/tests/PreferencesControllerTest.php new file mode 100644 index 0000000000..efbd2f468d --- /dev/null +++ b/app/tests/PreferencesControllerTest.php @@ -0,0 +1,51 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers 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/app/tests/ProfileControllerTest.php b/app/tests/ProfileControllerTest.php new file mode 100644 index 0000000000..18b1755a3d --- /dev/null +++ b/app/tests/ProfileControllerTest.php @@ -0,0 +1,63 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers 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 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.' + ); + } +} diff --git a/app/tests/RecurringControllerTest.php b/app/tests/RecurringControllerTest.php new file mode 100644 index 0000000000..ee7cdd6a4a --- /dev/null +++ b/app/tests/RecurringControllerTest.php @@ -0,0 +1,135 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers RecurringController::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 RecurringController::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 RecurringController::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 RecurringController::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 RecurringController::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 RecurringController::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 RecurringController::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 RecurringController::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/app/tests/ReminderControllerTest.php b/app/tests/ReminderControllerTest.php new file mode 100644 index 0000000000..60558fe051 --- /dev/null +++ b/app/tests/ReminderControllerTest.php @@ -0,0 +1,39 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/app/tests/ReportControllerTest.php b/app/tests/ReportControllerTest.php new file mode 100644 index 0000000000..a2683c423d --- /dev/null +++ b/app/tests/ReportControllerTest.php @@ -0,0 +1,51 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers ReportController::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/app/tests/SearchControllerTest.php b/app/tests/SearchControllerTest.php new file mode 100644 index 0000000000..3caaeda670 --- /dev/null +++ b/app/tests/SearchControllerTest.php @@ -0,0 +1,39 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } +} diff --git a/app/tests/TransactionControllerTest.php b/app/tests/TransactionControllerTest.php new file mode 100644 index 0000000000..9d9b5200c8 --- /dev/null +++ b/app/tests/TransactionControllerTest.php @@ -0,0 +1,123 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers 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 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 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 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 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 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 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.' + ); + } +} diff --git a/app/tests/UserControllerTest.php b/app/tests/UserControllerTest.php new file mode 100644 index 0000000000..f934b8402a --- /dev/null +++ b/app/tests/UserControllerTest.php @@ -0,0 +1,123 @@ +markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers UserController::logout + * @todo Implement testLogout(). + */ + public function testLogout() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers UserController::postLogin + * @todo Implement testPostLogin(). + */ + public function testPostLogin() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers UserController::postRegister + * @todo Implement testPostRegister(). + */ + public function testPostRegister() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers UserController::postRemindme + * @todo Implement testPostRemindme(). + */ + public function testPostRemindme() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers UserController::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 UserController::remindme + * @todo Implement testRemindme(). + */ + public function testRemindme() + { + // Remove the following lines when you implement this test. + $this->markTestIncomplete( + 'This test has not been implemented yet.' + ); + } + + /** + * @covers UserController::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.' + ); + } +}