From 1453a78e49a19713c23dab85331cab36c6716bb3 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 26 Nov 2016 08:55:26 +0100 Subject: [PATCH] Remove todo annotations. --- .../Admin/ConfigurationControllerTest.php | 16 ++++++---- .../Admin/DomainControllerTest.php | 8 ++--- .../Controllers/Admin/HomeControllerTest.php | 4 +-- .../Controllers/Admin/UserControllerTest.php | 8 ++--- .../Controllers/AttachmentControllerTest.php | 14 ++++---- .../Auth/ConfirmationControllerTest.php | 8 ++--- .../Auth/ForgotPasswordControllerTest.php | 8 ++--- .../Controllers/Auth/LoginControllerTest.php | 12 +++---- .../Auth/PasswordControllerTest.php | 12 +++---- .../Auth/RegisterControllerTest.php | 8 ++--- .../Auth/ResetPasswordControllerTest.php | 10 +++--- .../Auth/TwoFactorControllerTest.php | 8 ++--- .../Controllers/BillControllerTest.php | 20 ++++++------ .../Controllers/BudgetControllerTest.php | 28 ++++++++-------- .../Controllers/CategoryControllerTest.php | 22 ++++++------- .../Chart/AccountControllerTest.php | 20 ++++++------ .../Controllers/Chart/BillControllerTest.php | 6 ++-- .../Chart/BudgetControllerTest.php | 10 +++--- .../Chart/CategoryControllerTest.php | 10 +++--- .../Chart/CategoryReportControllerTest.php | 12 +++---- .../Chart/PiggyBankControllerTest.php | 4 +-- .../Chart/ReportControllerTest.php | 8 ++--- .../acceptance/Controllers/ControllerTest.php | 16 +++++----- .../Controllers/CurrencyControllerTest.php | 18 +++++------ .../Controllers/ExportControllerTest.php | 10 +++--- .../Controllers/HelpControllerTest.php | 4 +-- .../Controllers/ImportControllerTest.php | 26 +++++++-------- .../Controllers/JsonControllerTest.php | 28 ++++++++-------- .../Controllers/NewUserControllerTest.php | 6 ++-- .../Controllers/PiggyBankControllerTest.php | 32 +++++++++---------- .../Popup/ReportControllerTest.php | 4 +-- .../Controllers/PreferencesControllerTest.php | 12 +++---- .../Controllers/ProfileControllerTest.php | 12 +++---- .../Report/AccountControllerTest.php | 4 +-- .../Report/BalanceControllerTest.php | 4 +-- .../Report/BudgetControllerTest.php | 6 ++-- .../Report/CategoryControllerTest.php | 4 +-- .../Report/InOutControllerTest.php | 8 ++--- .../Controllers/ReportControllerTest.php | 14 ++++---- .../Controllers/RuleControllerTest.php | 26 +++++++-------- .../Controllers/RuleGroupControllerTest.php | 22 ++++++------- .../Controllers/SearchControllerTest.php | 4 +-- .../Controllers/TagControllerTest.php | 20 ++++++------ .../Transaction/ConvertControllerTest.php | 6 ++-- .../Transaction/MassControllerTest.php | 10 +++--- .../Transaction/SingleControllerTest.php | 14 ++++---- .../Transaction/SplitControllerTest.php | 6 ++-- .../Controllers/TransactionControllerTest.php | 12 +++---- 48 files changed, 293 insertions(+), 291 deletions(-) diff --git a/tests/acceptance/Controllers/Admin/ConfigurationControllerTest.php b/tests/acceptance/Controllers/Admin/ConfigurationControllerTest.php index 7c23cc443b..c7a22b8a52 100644 --- a/tests/acceptance/Controllers/Admin/ConfigurationControllerTest.php +++ b/tests/acceptance/Controllers/Admin/ConfigurationControllerTest.php @@ -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() { diff --git a/tests/acceptance/Controllers/Admin/DomainControllerTest.php b/tests/acceptance/Controllers/Admin/DomainControllerTest.php index bfa08ef00f..8bdefa711f 100644 --- a/tests/acceptance/Controllers/Admin/DomainControllerTest.php +++ b/tests/acceptance/Controllers/Admin/DomainControllerTest.php @@ -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 DomainControllerTest extends TestCase { @@ -21,7 +21,7 @@ class DomainControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Admin\DomainController::domains - * @todo Implement testDomains(). + * Implement testDomains(). */ public function testDomains() { @@ -33,7 +33,7 @@ class DomainControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Admin\DomainController::manual - * @todo Implement testManual(). + * Implement testManual(). */ public function testManual() { @@ -45,7 +45,7 @@ class DomainControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Admin\DomainController::toggleDomain - * @todo Implement testToggleDomain(). + * Implement testToggleDomain(). */ public function testToggleDomain() { diff --git a/tests/acceptance/Controllers/Admin/HomeControllerTest.php b/tests/acceptance/Controllers/Admin/HomeControllerTest.php index 1a24df5e6f..a531c21c9f 100644 --- a/tests/acceptance/Controllers/Admin/HomeControllerTest.php +++ b/tests/acceptance/Controllers/Admin/HomeControllerTest.php @@ -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:17. */ class HomeControllerTest extends TestCase { @@ -21,7 +21,7 @@ class HomeControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Admin\HomeController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { diff --git a/tests/acceptance/Controllers/Admin/UserControllerTest.php b/tests/acceptance/Controllers/Admin/UserControllerTest.php index 9cc482e252..31ad7f1e89 100644 --- a/tests/acceptance/Controllers/Admin/UserControllerTest.php +++ b/tests/acceptance/Controllers/Admin/UserControllerTest.php @@ -4,7 +4,7 @@ namespace Admin; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:17. */ class UserControllerTest extends TestCase { @@ -21,7 +21,7 @@ class UserControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Admin\UserController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -33,7 +33,7 @@ class UserControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Admin\UserController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -45,7 +45,7 @@ class UserControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Admin\UserController::show - * @todo Implement testShow(). + * Implement testShow(). */ public function testShow() { diff --git a/tests/acceptance/Controllers/AttachmentControllerTest.php b/tests/acceptance/Controllers/AttachmentControllerTest.php index 82031db768..16607667c4 100644 --- a/tests/acceptance/Controllers/AttachmentControllerTest.php +++ b/tests/acceptance/Controllers/AttachmentControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:17. */ class AttachmentControllerTest extends TestCase { @@ -19,7 +19,7 @@ class AttachmentControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\AttachmentController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -31,7 +31,7 @@ class AttachmentControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\AttachmentController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -43,7 +43,7 @@ class AttachmentControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\AttachmentController::download - * @todo Implement testDownload(). + * Implement testDownload(). */ public function testDownload() { @@ -55,7 +55,7 @@ class AttachmentControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\AttachmentController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -67,7 +67,7 @@ class AttachmentControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\AttachmentController::preview - * @todo Implement testPreview(). + * Implement testPreview(). */ public function testPreview() { @@ -79,7 +79,7 @@ class AttachmentControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\AttachmentController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/Auth/ConfirmationControllerTest.php b/tests/acceptance/Controllers/Auth/ConfirmationControllerTest.php index 89b148de97..2f75757590 100644 --- a/tests/acceptance/Controllers/Auth/ConfirmationControllerTest.php +++ b/tests/acceptance/Controllers/Auth/ConfirmationControllerTest.php @@ -4,7 +4,7 @@ namespace Auth; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:17. */ class ConfirmationControllerTest extends TestCase { @@ -21,7 +21,7 @@ class ConfirmationControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ConfirmationController::confirmationError - * @todo Implement testConfirmationError(). + * Implement testConfirmationError(). */ public function testConfirmationError() { @@ -33,7 +33,7 @@ class ConfirmationControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ConfirmationController::doConfirmation - * @todo Implement testDoConfirmation(). + * Implement testDoConfirmation(). */ public function testDoConfirmation() { @@ -45,7 +45,7 @@ class ConfirmationControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ConfirmationController::resendConfirmation - * @todo Implement testResendConfirmation(). + * Implement testResendConfirmation(). */ public function testResendConfirmation() { diff --git a/tests/acceptance/Controllers/Auth/ForgotPasswordControllerTest.php b/tests/acceptance/Controllers/Auth/ForgotPasswordControllerTest.php index 051ddce017..7b2198b44d 100644 --- a/tests/acceptance/Controllers/Auth/ForgotPasswordControllerTest.php +++ b/tests/acceptance/Controllers/Auth/ForgotPasswordControllerTest.php @@ -4,7 +4,7 @@ namespace Auth; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:17. */ class ForgotPasswordControllerTest extends TestCase { @@ -21,7 +21,7 @@ class ForgotPasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ForgotPasswordController::broker - * @todo Implement testBroker(). + * Implement testBroker(). */ public function testBroker() { @@ -33,7 +33,7 @@ class ForgotPasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ForgotPasswordController::sendResetLinkEmail - * @todo Implement testSendResetLinkEmail(). + * Implement testSendResetLinkEmail(). */ public function testSendResetLinkEmail() { @@ -45,7 +45,7 @@ class ForgotPasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ForgotPasswordController::showLinkRequestForm - * @todo Implement testShowLinkRequestForm(). + * Implement testShowLinkRequestForm(). */ public function testShowLinkRequestForm() { diff --git a/tests/acceptance/Controllers/Auth/LoginControllerTest.php b/tests/acceptance/Controllers/Auth/LoginControllerTest.php index 2df971be1d..97de2415bb 100644 --- a/tests/acceptance/Controllers/Auth/LoginControllerTest.php +++ b/tests/acceptance/Controllers/Auth/LoginControllerTest.php @@ -4,7 +4,7 @@ namespace Auth; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:17. */ class LoginControllerTest extends TestCase { @@ -21,7 +21,7 @@ class LoginControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\LoginController::login - * @todo Implement testLogin(). + * Implement testLogin(). */ public function testLogin() { @@ -33,7 +33,7 @@ class LoginControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\LoginController::logout - * @todo Implement testLogout(). + * Implement testLogout(). */ public function testLogout() { @@ -45,7 +45,7 @@ class LoginControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\LoginController::redirectPath - * @todo Implement testRedirectPath(). + * Implement testRedirectPath(). */ public function testRedirectPath() { @@ -57,7 +57,7 @@ class LoginControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\LoginController::showLoginForm - * @todo Implement testShowLoginForm(). + * Implement testShowLoginForm(). */ public function testShowLoginForm() { @@ -69,7 +69,7 @@ class LoginControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\LoginController::username - * @todo Implement testUsername(). + * Implement testUsername(). */ public function testUsername() { diff --git a/tests/acceptance/Controllers/Auth/PasswordControllerTest.php b/tests/acceptance/Controllers/Auth/PasswordControllerTest.php index 02d793ddce..c1d058dd81 100644 --- a/tests/acceptance/Controllers/Auth/PasswordControllerTest.php +++ b/tests/acceptance/Controllers/Auth/PasswordControllerTest.php @@ -4,7 +4,7 @@ namespace Auth; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:17. */ class PasswordControllerTest extends TestCase { @@ -21,7 +21,7 @@ class PasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\PasswordController::broker - * @todo Implement testBroker(). + * Implement testBroker(). */ public function testBroker() { @@ -33,7 +33,7 @@ class PasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\PasswordController::redirectPath - * @todo Implement testRedirectPath(). + * Implement testRedirectPath(). */ public function testRedirectPath() { @@ -45,7 +45,7 @@ class PasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\PasswordController::reset - * @todo Implement testReset(). + * Implement testReset(). */ public function testReset() { @@ -57,7 +57,7 @@ class PasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\PasswordController::sendResetLinkEmail - * @todo Implement testSendResetLinkEmail(). + * Implement testSendResetLinkEmail(). */ public function testSendResetLinkEmail() { @@ -69,7 +69,7 @@ class PasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\PasswordController::showResetForm - * @todo Implement testShowResetForm(). + * Implement testShowResetForm(). */ public function testShowResetForm() { diff --git a/tests/acceptance/Controllers/Auth/RegisterControllerTest.php b/tests/acceptance/Controllers/Auth/RegisterControllerTest.php index 48de774930..1c5e47b479 100644 --- a/tests/acceptance/Controllers/Auth/RegisterControllerTest.php +++ b/tests/acceptance/Controllers/Auth/RegisterControllerTest.php @@ -4,7 +4,7 @@ namespace Auth; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:17. */ class RegisterControllerTest extends TestCase { @@ -21,7 +21,7 @@ class RegisterControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\RegisterController::redirectPath - * @todo Implement testRedirectPath(). + * Implement testRedirectPath(). */ public function testRedirectPath() { @@ -33,7 +33,7 @@ class RegisterControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\RegisterController::register - * @todo Implement testRegister(). + * Implement testRegister(). */ public function testRegister() { @@ -45,7 +45,7 @@ class RegisterControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\RegisterController::showRegistrationForm - * @todo Implement testShowRegistrationForm(). + * Implement testShowRegistrationForm(). */ public function testShowRegistrationForm() { diff --git a/tests/acceptance/Controllers/Auth/ResetPasswordControllerTest.php b/tests/acceptance/Controllers/Auth/ResetPasswordControllerTest.php index 779b28614f..f6a5bb13ef 100644 --- a/tests/acceptance/Controllers/Auth/ResetPasswordControllerTest.php +++ b/tests/acceptance/Controllers/Auth/ResetPasswordControllerTest.php @@ -4,7 +4,7 @@ namespace Auth; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:17. */ class ResetPasswordControllerTest extends TestCase { @@ -21,7 +21,7 @@ class ResetPasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ResetPasswordController::broker - * @todo Implement testBroker(). + * Implement testBroker(). */ public function testBroker() { @@ -33,7 +33,7 @@ class ResetPasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ResetPasswordController::redirectPath - * @todo Implement testRedirectPath(). + * Implement testRedirectPath(). */ public function testRedirectPath() { @@ -45,7 +45,7 @@ class ResetPasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ResetPasswordController::reset - * @todo Implement testReset(). + * Implement testReset(). */ public function testReset() { @@ -57,7 +57,7 @@ class ResetPasswordControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\ResetPasswordController::showResetForm - * @todo Implement testShowResetForm(). + * Implement testShowResetForm(). */ public function testShowResetForm() { diff --git a/tests/acceptance/Controllers/Auth/TwoFactorControllerTest.php b/tests/acceptance/Controllers/Auth/TwoFactorControllerTest.php index cbf020c16d..3e81162b01 100644 --- a/tests/acceptance/Controllers/Auth/TwoFactorControllerTest.php +++ b/tests/acceptance/Controllers/Auth/TwoFactorControllerTest.php @@ -4,7 +4,7 @@ namespace Auth; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:18. */ class TwoFactorControllerTest extends TestCase { @@ -21,7 +21,7 @@ class TwoFactorControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\TwoFactorController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -33,7 +33,7 @@ class TwoFactorControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\TwoFactorController::lostTwoFactor - * @todo Implement testLostTwoFactor(). + * Implement testLostTwoFactor(). */ public function testLostTwoFactor() { @@ -45,7 +45,7 @@ class TwoFactorControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Auth\TwoFactorController::postIndex - * @todo Implement testPostIndex(). + * Implement testPostIndex(). */ public function testPostIndex() { diff --git a/tests/acceptance/Controllers/BillControllerTest.php b/tests/acceptance/Controllers/BillControllerTest.php index e54185cd1f..aa66fa1eb3 100644 --- a/tests/acceptance/Controllers/BillControllerTest.php +++ b/tests/acceptance/Controllers/BillControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:18. */ class BillControllerTest extends TestCase { @@ -19,7 +19,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -31,7 +31,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -43,7 +43,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -55,7 +55,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -67,7 +67,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -79,7 +79,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::rescan - * @todo Implement testRescan(). + * Implement testRescan(). */ public function testRescan() { @@ -91,7 +91,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::show - * @todo Implement testShow(). + * Implement testShow(). */ public function testShow() { @@ -103,7 +103,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -115,7 +115,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BillController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/BudgetControllerTest.php b/tests/acceptance/Controllers/BudgetControllerTest.php index c74ed7bd73..fdfda1fdab 100644 --- a/tests/acceptance/Controllers/BudgetControllerTest.php +++ b/tests/acceptance/Controllers/BudgetControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:18. */ class BudgetControllerTest extends TestCase { @@ -19,7 +19,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::amount - * @todo Implement testAmount(). + * Implement testAmount(). */ public function testAmount() { @@ -31,7 +31,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -43,7 +43,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -55,7 +55,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -67,7 +67,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -79,7 +79,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -91,7 +91,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::noBudget - * @todo Implement testNoBudget(). + * Implement testNoBudget(). */ public function testNoBudget() { @@ -103,7 +103,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::postUpdateIncome - * @todo Implement testPostUpdateIncome(). + * Implement testPostUpdateIncome(). */ public function testPostUpdateIncome() { @@ -115,7 +115,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::show - * @todo Implement testShow(). + * Implement testShow(). */ public function testShow() { @@ -127,7 +127,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::showWithRepetition - * @todo Implement testShowWithRepetition(). + * Implement testShowWithRepetition(). */ public function testShowWithRepetition() { @@ -139,7 +139,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -151,7 +151,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { @@ -163,7 +163,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\BudgetController::updateIncome - * @todo Implement testUpdateIncome(). + * Implement testUpdateIncome(). */ public function testUpdateIncome() { diff --git a/tests/acceptance/Controllers/CategoryControllerTest.php b/tests/acceptance/Controllers/CategoryControllerTest.php index 07fa20ab68..a24f2f713d 100644 --- a/tests/acceptance/Controllers/CategoryControllerTest.php +++ b/tests/acceptance/Controllers/CategoryControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:18. */ class CategoryControllerTest extends TestCase { @@ -19,7 +19,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -31,7 +31,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -43,7 +43,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -55,7 +55,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -67,7 +67,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -79,7 +79,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::noCategory - * @todo Implement testNoCategory(). + * Implement testNoCategory(). */ public function testNoCategory() { @@ -91,7 +91,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::show - * @todo Implement testShow(). + * Implement testShow(). */ public function testShow() { @@ -103,7 +103,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::showWithDate - * @todo Implement testShowWithDate(). + * Implement testShowWithDate(). */ public function testShowWithDate() { @@ -115,7 +115,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -127,7 +127,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CategoryController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/Chart/AccountControllerTest.php b/tests/acceptance/Controllers/Chart/AccountControllerTest.php index 3a198e40e1..88ab913ec1 100644 --- a/tests/acceptance/Controllers/Chart/AccountControllerTest.php +++ b/tests/acceptance/Controllers/Chart/AccountControllerTest.php @@ -4,7 +4,7 @@ namespace Chart; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 17:30:36. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:18. */ class AccountControllerTest extends TestCase { @@ -21,7 +21,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::expenseAccounts - * @todo Implement testExpenseAccounts(). + * Implement testExpenseAccounts(). */ public function testExpenseAccounts() { @@ -33,7 +33,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::expenseByBudget - * @todo Implement testExpenseByBudget(). + * Implement testExpenseByBudget(). */ public function testExpenseByBudget() { @@ -45,7 +45,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::expenseByCategory - * @todo Implement testExpenseByCategory(). + * Implement testExpenseByCategory(). */ public function testExpenseByCategory() { @@ -57,7 +57,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::frontpage - * @todo Implement testFrontpage(). + * Implement testFrontpage(). */ public function testFrontpage() { @@ -69,7 +69,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::incomeByCategory - * @todo Implement testIncomeByCategory(). + * Implement testIncomeByCategory(). */ public function testIncomeByCategory() { @@ -81,7 +81,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::report - * @todo Implement testReport(). + * Implement testReport(). */ public function testReport() { @@ -93,7 +93,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::revenueAccounts - * @todo Implement testRevenueAccounts(). + * Implement testRevenueAccounts(). */ public function testRevenueAccounts() { @@ -105,7 +105,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::single - * @todo Implement testSingle(). + * Implement testSingle(). */ public function testSingle() { @@ -117,7 +117,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::specificPeriod - * @todo Implement testSpecificPeriod(). + * Implement testSpecificPeriod(). */ public function testSpecificPeriod() { diff --git a/tests/acceptance/Controllers/Chart/BillControllerTest.php b/tests/acceptance/Controllers/Chart/BillControllerTest.php index 199821e21c..40dee53118 100644 --- a/tests/acceptance/Controllers/Chart/BillControllerTest.php +++ b/tests/acceptance/Controllers/Chart/BillControllerTest.php @@ -4,7 +4,7 @@ namespace Chart; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:18. */ class BillControllerTest extends TestCase { @@ -21,7 +21,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\BillController::frontpage - * @todo Implement testFrontpage(). + * Implement testFrontpage(). */ public function testFrontpage() { @@ -33,7 +33,7 @@ class BillControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\BillController::single - * @todo Implement testSingle(). + * Implement testSingle(). */ public function testSingle() { diff --git a/tests/acceptance/Controllers/Chart/BudgetControllerTest.php b/tests/acceptance/Controllers/Chart/BudgetControllerTest.php index 63a66eabf6..810e8aa344 100644 --- a/tests/acceptance/Controllers/Chart/BudgetControllerTest.php +++ b/tests/acceptance/Controllers/Chart/BudgetControllerTest.php @@ -4,7 +4,7 @@ namespace Chart; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:18. */ class BudgetControllerTest extends TestCase { @@ -21,7 +21,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\BudgetController::budget - * @todo Implement testBudget(). + * Implement testBudget(). */ public function testBudget() { @@ -33,7 +33,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\BudgetController::budgetLimit - * @todo Implement testBudgetLimit(). + * Implement testBudgetLimit(). */ public function testBudgetLimit() { @@ -45,7 +45,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\BudgetController::frontpage - * @todo Implement testFrontpage(). + * Implement testFrontpage(). */ public function testFrontpage() { @@ -57,7 +57,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\BudgetController::period - * @todo Implement testPeriod(). + * Implement testPeriod(). */ public function testPeriod() { diff --git a/tests/acceptance/Controllers/Chart/CategoryControllerTest.php b/tests/acceptance/Controllers/Chart/CategoryControllerTest.php index 9a38e4a5e9..82dbe9aac0 100644 --- a/tests/acceptance/Controllers/Chart/CategoryControllerTest.php +++ b/tests/acceptance/Controllers/Chart/CategoryControllerTest.php @@ -4,7 +4,7 @@ namespace Chart; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:19. */ class CategoryControllerTest extends TestCase { @@ -21,7 +21,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryController::all - * @todo Implement testAll(). + * Implement testAll(). */ public function testAll() { @@ -33,7 +33,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryController::currentPeriod - * @todo Implement testCurrentPeriod(). + * Implement testCurrentPeriod(). */ public function testCurrentPeriod() { @@ -45,7 +45,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryController::frontpage - * @todo Implement testFrontpage(). + * Implement testFrontpage(). */ public function testFrontpage() { @@ -57,7 +57,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryController::specificPeriod - * @todo Implement testSpecificPeriod(). + * Implement testSpecificPeriod(). */ public function testSpecificPeriod() { diff --git a/tests/acceptance/Controllers/Chart/CategoryReportControllerTest.php b/tests/acceptance/Controllers/Chart/CategoryReportControllerTest.php index 7bed2c6d61..7a9d45cfd9 100644 --- a/tests/acceptance/Controllers/Chart/CategoryReportControllerTest.php +++ b/tests/acceptance/Controllers/Chart/CategoryReportControllerTest.php @@ -4,7 +4,7 @@ namespace Chart; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:19. */ class CategoryReportControllerTest extends TestCase { @@ -21,7 +21,7 @@ class CategoryReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryReportController::accountExpense - * @todo Implement testAccountExpense(). + * Implement testAccountExpense(). */ public function testAccountExpense() { @@ -33,7 +33,7 @@ class CategoryReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryReportController::accountIncome - * @todo Implement testAccountIncome(). + * Implement testAccountIncome(). */ public function testAccountIncome() { @@ -45,7 +45,7 @@ class CategoryReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryReportController::categoryExpense - * @todo Implement testCategoryExpense(). + * Implement testCategoryExpense(). */ public function testCategoryExpense() { @@ -57,7 +57,7 @@ class CategoryReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryReportController::categoryIncome - * @todo Implement testCategoryIncome(). + * Implement testCategoryIncome(). */ public function testCategoryIncome() { @@ -69,7 +69,7 @@ class CategoryReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\CategoryReportController::mainChart - * @todo Implement testMainChart(). + * Implement testMainChart(). */ public function testMainChart() { diff --git a/tests/acceptance/Controllers/Chart/PiggyBankControllerTest.php b/tests/acceptance/Controllers/Chart/PiggyBankControllerTest.php index 11d7fb8fa6..682aceaeaa 100644 --- a/tests/acceptance/Controllers/Chart/PiggyBankControllerTest.php +++ b/tests/acceptance/Controllers/Chart/PiggyBankControllerTest.php @@ -4,7 +4,7 @@ namespace Chart; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:20. */ class PiggyBankControllerTest extends TestCase { @@ -21,7 +21,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\PiggyBankController::history - * @todo Implement testHistory(). + * Implement testHistory(). */ public function testHistory() { diff --git a/tests/acceptance/Controllers/Chart/ReportControllerTest.php b/tests/acceptance/Controllers/Chart/ReportControllerTest.php index 79aa395e3d..48c8145b7e 100644 --- a/tests/acceptance/Controllers/Chart/ReportControllerTest.php +++ b/tests/acceptance/Controllers/Chart/ReportControllerTest.php @@ -4,7 +4,7 @@ namespace Chart; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:20. */ class ReportControllerTest extends TestCase { @@ -21,7 +21,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\ReportController::netWorth - * @todo Implement testNetWorth(). + * Implement testNetWorth(). */ public function testNetWorth() { @@ -33,7 +33,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\ReportController::yearInOut - * @todo Implement testYearInOut(). + * Implement testYearInOut(). */ public function testYearInOut() { @@ -45,7 +45,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Chart\ReportController::yearInOutSummarized - * @todo Implement testYearInOutSummarized(). + * Implement testYearInOutSummarized(). */ public function testYearInOutSummarized() { diff --git a/tests/acceptance/Controllers/ControllerTest.php b/tests/acceptance/Controllers/ControllerTest.php index 5dd633bd7c..f104d3fafc 100644 --- a/tests/acceptance/Controllers/ControllerTest.php +++ b/tests/acceptance/Controllers/ControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:20. */ class ControllerTest extends TestCase { @@ -19,7 +19,7 @@ class ControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Controller::authorize - * @todo Implement testAuthorize(). + * Implement testAuthorize(). */ public function testAuthorize() { @@ -31,7 +31,7 @@ class ControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Controller::authorizeForUser - * @todo Implement testAuthorizeForUser(). + * Implement testAuthorizeForUser(). */ public function testAuthorizeForUser() { @@ -43,7 +43,7 @@ class ControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Controller::authorizeResource - * @todo Implement testAuthorizeResource(). + * Implement testAuthorizeResource(). */ public function testAuthorizeResource() { @@ -55,7 +55,7 @@ class ControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Controller::dispatchNow - * @todo Implement testDispatchNow(). + * Implement testDispatchNow(). */ public function testDispatchNow() { @@ -67,7 +67,7 @@ class ControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Controller::validate - * @todo Implement testValidate(). + * Implement testValidate(). */ public function testValidate() { @@ -79,7 +79,7 @@ class ControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Controller::validateWith - * @todo Implement testValidateWith(). + * Implement testValidateWith(). */ public function testValidateWith() { @@ -91,7 +91,7 @@ class ControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Controller::validateWithBag - * @todo Implement testValidateWithBag(). + * Implement testValidateWithBag(). */ public function testValidateWithBag() { diff --git a/tests/acceptance/Controllers/CurrencyControllerTest.php b/tests/acceptance/Controllers/CurrencyControllerTest.php index a435f2ee98..11f5469659 100644 --- a/tests/acceptance/Controllers/CurrencyControllerTest.php +++ b/tests/acceptance/Controllers/CurrencyControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:11. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:20. */ class CurrencyControllerTest extends TestCase { @@ -19,7 +19,7 @@ class CurrencyControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CurrencyController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -31,7 +31,7 @@ class CurrencyControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CurrencyController::defaultCurrency - * @todo Implement testDefaultCurrency(). + * Implement testDefaultCurrency(). */ public function testDefaultCurrency() { @@ -43,7 +43,7 @@ class CurrencyControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CurrencyController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -55,7 +55,7 @@ class CurrencyControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CurrencyController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -67,7 +67,7 @@ class CurrencyControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CurrencyController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -79,7 +79,7 @@ class CurrencyControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CurrencyController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -91,7 +91,7 @@ class CurrencyControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CurrencyController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -103,7 +103,7 @@ class CurrencyControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\CurrencyController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/ExportControllerTest.php b/tests/acceptance/Controllers/ExportControllerTest.php index 5d9c205b40..ae39c661ec 100644 --- a/tests/acceptance/Controllers/ExportControllerTest.php +++ b/tests/acceptance/Controllers/ExportControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:11. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:21. */ class ExportControllerTest extends TestCase { @@ -19,7 +19,7 @@ class ExportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ExportController::download - * @todo Implement testDownload(). + * Implement testDownload(). */ public function testDownload() { @@ -31,7 +31,7 @@ class ExportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ExportController::getStatus - * @todo Implement testGetStatus(). + * Implement testGetStatus(). */ public function testGetStatus() { @@ -43,7 +43,7 @@ class ExportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ExportController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -55,7 +55,7 @@ class ExportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ExportController::postIndex - * @todo Implement testPostIndex(). + * Implement testPostIndex(). */ public function testPostIndex() { diff --git a/tests/acceptance/Controllers/HelpControllerTest.php b/tests/acceptance/Controllers/HelpControllerTest.php index 2b4aa55e42..a72daf3cdf 100644 --- a/tests/acceptance/Controllers/HelpControllerTest.php +++ b/tests/acceptance/Controllers/HelpControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:11. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:21. */ class HelpControllerTest extends TestCase { @@ -19,7 +19,7 @@ class HelpControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\HelpController::show - * @todo Implement testShow(). + * Implement testShow(). */ public function testShow() { diff --git a/tests/acceptance/Controllers/ImportControllerTest.php b/tests/acceptance/Controllers/ImportControllerTest.php index 130d8c98bf..a68af92f56 100644 --- a/tests/acceptance/Controllers/ImportControllerTest.php +++ b/tests/acceptance/Controllers/ImportControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:11. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:21. */ class ImportControllerTest extends TestCase { @@ -19,7 +19,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::complete - * @todo Implement testComplete(). + * Implement testComplete(). */ public function testComplete() { @@ -31,7 +31,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::configure - * @todo Implement testConfigure(). + * Implement testConfigure(). */ public function testConfigure() { @@ -43,7 +43,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::download - * @todo Implement testDownload(). + * Implement testDownload(). */ public function testDownload() { @@ -55,7 +55,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::finished - * @todo Implement testFinished(). + * Implement testFinished(). */ public function testFinished() { @@ -67,7 +67,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -79,7 +79,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::json - * @todo Implement testJson(). + * Implement testJson(). */ public function testJson() { @@ -91,7 +91,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::postConfigure - * @todo Implement testPostConfigure(). + * Implement testPostConfigure(). */ public function testPostConfigure() { @@ -103,7 +103,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::postSettings - * @todo Implement testPostSettings(). + * Implement testPostSettings(). */ public function testPostSettings() { @@ -115,7 +115,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::settings - * @todo Implement testSettings(). + * Implement testSettings(). */ public function testSettings() { @@ -127,7 +127,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::start - * @todo Implement testStart(). + * Implement testStart(). */ public function testStart() { @@ -139,7 +139,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::status - * @todo Implement testStatus(). + * Implement testStatus(). */ public function testStatus() { @@ -151,7 +151,7 @@ class ImportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ImportController::upload - * @todo Implement testUpload(). + * Implement testUpload(). */ public function testUpload() { diff --git a/tests/acceptance/Controllers/JsonControllerTest.php b/tests/acceptance/Controllers/JsonControllerTest.php index 123b31ade3..4fd56ab93d 100644 --- a/tests/acceptance/Controllers/JsonControllerTest.php +++ b/tests/acceptance/Controllers/JsonControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:21. */ class JsonControllerTest extends TestCase { @@ -19,7 +19,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::action - * @todo Implement testAction(). + * Implement testAction(). */ public function testAction() { @@ -31,7 +31,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::boxBillsPaid - * @todo Implement testBoxBillsPaid(). + * Implement testBoxBillsPaid(). */ public function testBoxBillsPaid() { @@ -43,7 +43,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::boxBillsUnpaid - * @todo Implement testBoxBillsUnpaid(). + * Implement testBoxBillsUnpaid(). */ public function testBoxBillsUnpaid() { @@ -55,7 +55,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::boxIn - * @todo Implement testBoxIn(). + * Implement testBoxIn(). */ public function testBoxIn() { @@ -67,7 +67,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::boxOut - * @todo Implement testBoxOut(). + * Implement testBoxOut(). */ public function testBoxOut() { @@ -79,7 +79,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::categories - * @todo Implement testCategories(). + * Implement testCategories(). */ public function testCategories() { @@ -91,7 +91,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::endTour - * @todo Implement testEndTour(). + * Implement testEndTour(). */ public function testEndTour() { @@ -103,7 +103,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::expenseAccounts - * @todo Implement testExpenseAccounts(). + * Implement testExpenseAccounts(). */ public function testExpenseAccounts() { @@ -115,7 +115,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::revenueAccounts - * @todo Implement testRevenueAccounts(). + * Implement testRevenueAccounts(). */ public function testRevenueAccounts() { @@ -127,7 +127,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::tags - * @todo Implement testTags(). + * Implement testTags(). */ public function testTags() { @@ -139,7 +139,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::tour - * @todo Implement testTour(). + * Implement testTour(). */ public function testTour() { @@ -151,7 +151,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::transactionJournals - * @todo Implement testTransactionJournals(). + * Implement testTransactionJournals(). */ public function testTransactionJournals() { @@ -163,7 +163,7 @@ class JsonControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\JsonController::trigger - * @todo Implement testTrigger(). + * Implement testTrigger(). */ public function testTrigger() { diff --git a/tests/acceptance/Controllers/NewUserControllerTest.php b/tests/acceptance/Controllers/NewUserControllerTest.php index 6c0b6979af..75e66b81d0 100644 --- a/tests/acceptance/Controllers/NewUserControllerTest.php +++ b/tests/acceptance/Controllers/NewUserControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:21. */ class NewUserControllerTest extends TestCase { @@ -19,7 +19,7 @@ class NewUserControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\NewUserController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -31,7 +31,7 @@ class NewUserControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\NewUserController::submit - * @todo Implement testSubmit(). + * Implement testSubmit(). */ public function testSubmit() { diff --git a/tests/acceptance/Controllers/PiggyBankControllerTest.php b/tests/acceptance/Controllers/PiggyBankControllerTest.php index cba932a6a5..f1036d22fe 100644 --- a/tests/acceptance/Controllers/PiggyBankControllerTest.php +++ b/tests/acceptance/Controllers/PiggyBankControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:21. */ class PiggyBankControllerTest extends TestCase { @@ -19,7 +19,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::add - * @todo Implement testAdd(). + * Implement testAdd(). */ public function testAdd() { @@ -31,7 +31,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::addMobile - * @todo Implement testAddMobile(). + * Implement testAddMobile(). */ public function testAddMobile() { @@ -43,7 +43,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -55,7 +55,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -67,7 +67,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -79,7 +79,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -91,7 +91,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -103,7 +103,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::order - * @todo Implement testOrder(). + * Implement testOrder(). */ public function testOrder() { @@ -115,7 +115,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::postAdd - * @todo Implement testPostAdd(). + * Implement testPostAdd(). */ public function testPostAdd() { @@ -127,7 +127,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::postRemove - * @todo Implement testPostRemove(). + * Implement testPostRemove(). */ public function testPostRemove() { @@ -139,7 +139,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::remove - * @todo Implement testRemove(). + * Implement testRemove(). */ public function testRemove() { @@ -151,7 +151,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::removeMobile - * @todo Implement testRemoveMobile(). + * Implement testRemoveMobile(). */ public function testRemoveMobile() { @@ -163,7 +163,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::show - * @todo Implement testShow(). + * Implement testShow(). */ public function testShow() { @@ -175,7 +175,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -187,7 +187,7 @@ class PiggyBankControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PiggyBankController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/Popup/ReportControllerTest.php b/tests/acceptance/Controllers/Popup/ReportControllerTest.php index c98eae9006..65aecd1e42 100644 --- a/tests/acceptance/Controllers/Popup/ReportControllerTest.php +++ b/tests/acceptance/Controllers/Popup/ReportControllerTest.php @@ -4,7 +4,7 @@ namespace Popup; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:21. */ class ReportControllerTest extends TestCase { @@ -21,7 +21,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Popup\ReportController::info - * @todo Implement testInfo(). + * Implement testInfo(). */ public function testInfo() { diff --git a/tests/acceptance/Controllers/PreferencesControllerTest.php b/tests/acceptance/Controllers/PreferencesControllerTest.php index 6da8efb81e..ff32194be5 100644 --- a/tests/acceptance/Controllers/PreferencesControllerTest.php +++ b/tests/acceptance/Controllers/PreferencesControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:21. */ class PreferencesControllerTest extends TestCase { @@ -19,7 +19,7 @@ class PreferencesControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PreferencesController::code - * @todo Implement testCode(). + * Implement testCode(). */ public function testCode() { @@ -31,7 +31,7 @@ class PreferencesControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PreferencesController::deleteCode - * @todo Implement testDeleteCode(). + * Implement testDeleteCode(). */ public function testDeleteCode() { @@ -43,7 +43,7 @@ class PreferencesControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PreferencesController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -55,7 +55,7 @@ class PreferencesControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PreferencesController::postCode - * @todo Implement testPostCode(). + * Implement testPostCode(). */ public function testPostCode() { @@ -67,7 +67,7 @@ class PreferencesControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\PreferencesController::postIndex - * @todo Implement testPostIndex(). + * Implement testPostIndex(). */ public function testPostIndex() { diff --git a/tests/acceptance/Controllers/ProfileControllerTest.php b/tests/acceptance/Controllers/ProfileControllerTest.php index 9e76ac1b08..9f78689f5e 100644 --- a/tests/acceptance/Controllers/ProfileControllerTest.php +++ b/tests/acceptance/Controllers/ProfileControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class ProfileControllerTest extends TestCase { @@ -19,7 +19,7 @@ class ProfileControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ProfileController::changePassword - * @todo Implement testChangePassword(). + * Implement testChangePassword(). */ public function testChangePassword() { @@ -31,7 +31,7 @@ class ProfileControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ProfileController::deleteAccount - * @todo Implement testDeleteAccount(). + * Implement testDeleteAccount(). */ public function testDeleteAccount() { @@ -43,7 +43,7 @@ class ProfileControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ProfileController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -55,7 +55,7 @@ class ProfileControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ProfileController::postChangePassword - * @todo Implement testPostChangePassword(). + * Implement testPostChangePassword(). */ public function testPostChangePassword() { @@ -67,7 +67,7 @@ class ProfileControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ProfileController::postDeleteAccount - * @todo Implement testPostDeleteAccount(). + * Implement testPostDeleteAccount(). */ public function testPostDeleteAccount() { diff --git a/tests/acceptance/Controllers/Report/AccountControllerTest.php b/tests/acceptance/Controllers/Report/AccountControllerTest.php index 4f0ae09523..21a2a976cc 100644 --- a/tests/acceptance/Controllers/Report/AccountControllerTest.php +++ b/tests/acceptance/Controllers/Report/AccountControllerTest.php @@ -4,7 +4,7 @@ namespace Report; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class AccountControllerTest extends TestCase { @@ -21,7 +21,7 @@ class AccountControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Report\AccountController::accountReport - * @todo Implement testAccountReport(). + * Implement testAccountReport(). */ public function testAccountReport() { diff --git a/tests/acceptance/Controllers/Report/BalanceControllerTest.php b/tests/acceptance/Controllers/Report/BalanceControllerTest.php index 8457e40677..d925e2fe33 100644 --- a/tests/acceptance/Controllers/Report/BalanceControllerTest.php +++ b/tests/acceptance/Controllers/Report/BalanceControllerTest.php @@ -4,7 +4,7 @@ namespace Report; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class BalanceControllerTest extends TestCase { @@ -21,7 +21,7 @@ class BalanceControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Report\BalanceController::balanceReport - * @todo Implement testBalanceReport(). + * Implement testBalanceReport(). */ public function testBalanceReport() { diff --git a/tests/acceptance/Controllers/Report/BudgetControllerTest.php b/tests/acceptance/Controllers/Report/BudgetControllerTest.php index efaa961536..f232627ccc 100644 --- a/tests/acceptance/Controllers/Report/BudgetControllerTest.php +++ b/tests/acceptance/Controllers/Report/BudgetControllerTest.php @@ -4,7 +4,7 @@ namespace Report; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class BudgetControllerTest extends TestCase { @@ -21,7 +21,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Report\BudgetController::budgetPeriodReport - * @todo Implement testBudgetPeriodReport(). + * Implement testBudgetPeriodReport(). */ public function testBudgetPeriodReport() { @@ -33,7 +33,7 @@ class BudgetControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Report\BudgetController::budgetReport - * @todo Implement testBudgetReport(). + * Implement testBudgetReport(). */ public function testBudgetReport() { diff --git a/tests/acceptance/Controllers/Report/CategoryControllerTest.php b/tests/acceptance/Controllers/Report/CategoryControllerTest.php index 6ca592d9a6..c31d2b5c24 100644 --- a/tests/acceptance/Controllers/Report/CategoryControllerTest.php +++ b/tests/acceptance/Controllers/Report/CategoryControllerTest.php @@ -4,7 +4,7 @@ namespace Report; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class CategoryControllerTest extends TestCase { @@ -21,7 +21,7 @@ class CategoryControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Report\CategoryController::categoryReport - * @todo Implement testCategoryReport(). + * Implement testCategoryReport(). */ public function testCategoryReport() { diff --git a/tests/acceptance/Controllers/Report/InOutControllerTest.php b/tests/acceptance/Controllers/Report/InOutControllerTest.php index dd7d869355..929d5bed7c 100644 --- a/tests/acceptance/Controllers/Report/InOutControllerTest.php +++ b/tests/acceptance/Controllers/Report/InOutControllerTest.php @@ -4,7 +4,7 @@ namespace Report; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class InOutControllerTest extends TestCase { @@ -21,7 +21,7 @@ class InOutControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Report\InOutController::expenseReport - * @todo Implement testExpenseReport(). + * Implement testExpenseReport(). */ public function testExpenseReport() { @@ -33,7 +33,7 @@ class InOutControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Report\InOutController::incExpReport - * @todo Implement testIncExpReport(). + * Implement testIncExpReport(). */ public function testIncExpReport() { @@ -45,7 +45,7 @@ class InOutControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Report\InOutController::incomeReport - * @todo Implement testIncomeReport(). + * Implement testIncomeReport(). */ public function testIncomeReport() { diff --git a/tests/acceptance/Controllers/ReportControllerTest.php b/tests/acceptance/Controllers/ReportControllerTest.php index f431ece115..4fc829622d 100644 --- a/tests/acceptance/Controllers/ReportControllerTest.php +++ b/tests/acceptance/Controllers/ReportControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class ReportControllerTest extends TestCase { @@ -19,7 +19,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ReportController::auditReport - * @todo Implement testAuditReport(). + * Implement testAuditReport(). */ public function testAuditReport() { @@ -31,7 +31,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ReportController::categoryReport - * @todo Implement testCategoryReport(). + * Implement testCategoryReport(). */ public function testCategoryReport() { @@ -43,7 +43,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ReportController::defaultReport - * @todo Implement testDefaultReport(). + * Implement testDefaultReport(). */ public function testDefaultReport() { @@ -55,7 +55,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ReportController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -67,7 +67,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ReportController::options - * @todo Implement testOptions(). + * Implement testOptions(). */ public function testOptions() { @@ -79,7 +79,7 @@ class ReportControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\ReportController::postIndex - * @todo Implement testPostIndex(). + * Implement testPostIndex(). */ public function testPostIndex() { diff --git a/tests/acceptance/Controllers/RuleControllerTest.php b/tests/acceptance/Controllers/RuleControllerTest.php index 6f661b838e..6cde62313c 100644 --- a/tests/acceptance/Controllers/RuleControllerTest.php +++ b/tests/acceptance/Controllers/RuleControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class RuleControllerTest extends TestCase { @@ -19,7 +19,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -31,7 +31,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -43,7 +43,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -55,7 +55,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::down - * @todo Implement testDown(). + * Implement testDown(). */ public function testDown() { @@ -67,7 +67,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -79,7 +79,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -91,7 +91,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::reorderRuleActions - * @todo Implement testReorderRuleActions(). + * Implement testReorderRuleActions(). */ public function testReorderRuleActions() { @@ -103,7 +103,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::reorderRuleTriggers - * @todo Implement testReorderRuleTriggers(). + * Implement testReorderRuleTriggers(). */ public function testReorderRuleTriggers() { @@ -115,7 +115,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -127,7 +127,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::testTriggers - * @todo Implement testTestTriggers(). + * Implement testTestTriggers(). */ public function testTestTriggers() { @@ -139,7 +139,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::up - * @todo Implement testUp(). + * Implement testUp(). */ public function testUp() { @@ -151,7 +151,7 @@ class RuleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/RuleGroupControllerTest.php b/tests/acceptance/Controllers/RuleGroupControllerTest.php index 540004a9ac..1d73fbc8de 100644 --- a/tests/acceptance/Controllers/RuleGroupControllerTest.php +++ b/tests/acceptance/Controllers/RuleGroupControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class RuleGroupControllerTest extends TestCase { @@ -19,7 +19,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -31,7 +31,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -43,7 +43,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -55,7 +55,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::down - * @todo Implement testDown(). + * Implement testDown(). */ public function testDown() { @@ -67,7 +67,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -79,7 +79,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::execute - * @todo Implement testExecute(). + * Implement testExecute(). */ public function testExecute() { @@ -91,7 +91,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::selectTransactions - * @todo Implement testSelectTransactions(). + * Implement testSelectTransactions(). */ public function testSelectTransactions() { @@ -103,7 +103,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -115,7 +115,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::up - * @todo Implement testUp(). + * Implement testUp(). */ public function testUp() { @@ -127,7 +127,7 @@ class RuleGroupControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\RuleGroupController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/SearchControllerTest.php b/tests/acceptance/Controllers/SearchControllerTest.php index cf402d2691..144059ef44 100644 --- a/tests/acceptance/Controllers/SearchControllerTest.php +++ b/tests/acceptance/Controllers/SearchControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:22. */ class SearchControllerTest extends TestCase { @@ -19,7 +19,7 @@ class SearchControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\SearchController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { diff --git a/tests/acceptance/Controllers/TagControllerTest.php b/tests/acceptance/Controllers/TagControllerTest.php index edcfd9a0a2..329a9b4e4c 100644 --- a/tests/acceptance/Controllers/TagControllerTest.php +++ b/tests/acceptance/Controllers/TagControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:23. */ class TagControllerTest extends TestCase { @@ -19,7 +19,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -31,7 +31,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -43,7 +43,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -55,7 +55,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -67,7 +67,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::hideTagHelp - * @todo Implement testHideTagHelp(). + * Implement testHideTagHelp(). */ public function testHideTagHelp() { @@ -79,7 +79,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -91,7 +91,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::show - * @todo Implement testShow(). + * Implement testShow(). */ public function testShow() { @@ -103,7 +103,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -115,7 +115,7 @@ class TagControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TagController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/Transaction/ConvertControllerTest.php b/tests/acceptance/Controllers/Transaction/ConvertControllerTest.php index f6f444159e..59059d041b 100644 --- a/tests/acceptance/Controllers/Transaction/ConvertControllerTest.php +++ b/tests/acceptance/Controllers/Transaction/ConvertControllerTest.php @@ -4,7 +4,7 @@ namespace Transaction; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:23. */ class ConvertControllerTest extends TestCase { @@ -21,7 +21,7 @@ class ConvertControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\ConvertController::convert - * @todo Implement testConvert(). + * Implement testConvert(). */ public function testConvert() { @@ -33,7 +33,7 @@ class ConvertControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\ConvertController::submit - * @todo Implement testSubmit(). + * Implement testSubmit(). */ public function testSubmit() { diff --git a/tests/acceptance/Controllers/Transaction/MassControllerTest.php b/tests/acceptance/Controllers/Transaction/MassControllerTest.php index eb24b914e5..b9f78a1352 100644 --- a/tests/acceptance/Controllers/Transaction/MassControllerTest.php +++ b/tests/acceptance/Controllers/Transaction/MassControllerTest.php @@ -4,7 +4,7 @@ namespace Transaction; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:23. */ class MassControllerTest extends TestCase { @@ -21,7 +21,7 @@ class MassControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\MassController::massDelete - * @todo Implement testMassDelete(). + * Implement testMassDelete(). */ public function testMassDelete() { @@ -33,7 +33,7 @@ class MassControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\MassController::massDestroy - * @todo Implement testMassDestroy(). + * Implement testMassDestroy(). */ public function testMassDestroy() { @@ -45,7 +45,7 @@ class MassControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\MassController::massEdit - * @todo Implement testMassEdit(). + * Implement testMassEdit(). */ public function testMassEdit() { @@ -57,7 +57,7 @@ class MassControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\MassController::massUpdate - * @todo Implement testMassUpdate(). + * Implement testMassUpdate(). */ public function testMassUpdate() { diff --git a/tests/acceptance/Controllers/Transaction/SingleControllerTest.php b/tests/acceptance/Controllers/Transaction/SingleControllerTest.php index e54e1c7255..2c4d42890a 100644 --- a/tests/acceptance/Controllers/Transaction/SingleControllerTest.php +++ b/tests/acceptance/Controllers/Transaction/SingleControllerTest.php @@ -4,7 +4,7 @@ namespace Transaction; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:23. */ class SingleControllerTest extends TestCase { @@ -21,7 +21,7 @@ class SingleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\SingleController::create - * @todo Implement testCreate(). + * Implement testCreate(). */ public function testCreate() { @@ -33,7 +33,7 @@ class SingleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\SingleController::delete - * @todo Implement testDelete(). + * Implement testDelete(). */ public function testDelete() { @@ -45,7 +45,7 @@ class SingleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\SingleController::destroy - * @todo Implement testDestroy(). + * Implement testDestroy(). */ public function testDestroy() { @@ -57,7 +57,7 @@ class SingleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\SingleController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -69,7 +69,7 @@ class SingleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\SingleController::store - * @todo Implement testStore(). + * Implement testStore(). */ public function testStore() { @@ -81,7 +81,7 @@ class SingleControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\SingleController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/Transaction/SplitControllerTest.php b/tests/acceptance/Controllers/Transaction/SplitControllerTest.php index 3407592042..ce8df1b82c 100644 --- a/tests/acceptance/Controllers/Transaction/SplitControllerTest.php +++ b/tests/acceptance/Controllers/Transaction/SplitControllerTest.php @@ -4,7 +4,7 @@ namespace Transaction; use TestCase; /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:23. */ class SplitControllerTest extends TestCase { @@ -21,7 +21,7 @@ class SplitControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\SplitController::edit - * @todo Implement testEdit(). + * Implement testEdit(). */ public function testEdit() { @@ -33,7 +33,7 @@ class SplitControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\Transaction\SplitController::update - * @todo Implement testUpdate(). + * Implement testUpdate(). */ public function testUpdate() { diff --git a/tests/acceptance/Controllers/TransactionControllerTest.php b/tests/acceptance/Controllers/TransactionControllerTest.php index aac6f87791..b2c65af957 100644 --- a/tests/acceptance/Controllers/TransactionControllerTest.php +++ b/tests/acceptance/Controllers/TransactionControllerTest.php @@ -2,7 +2,7 @@ /** - * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 11:51:45. + * Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:23. */ class TransactionControllerTest extends TestCase { @@ -19,7 +19,7 @@ class TransactionControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TransactionController::index - * @todo Implement testIndex(). + * Implement testIndex(). */ public function testIndex() { @@ -31,7 +31,7 @@ class TransactionControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TransactionController::indexAll - * @todo Implement testIndexAll(). + * Implement testIndexAll(). */ public function testIndexAll() { @@ -43,7 +43,7 @@ class TransactionControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TransactionController::indexDate - * @todo Implement testIndexDate(). + * Implement testIndexDate(). */ public function testIndexDate() { @@ -55,7 +55,7 @@ class TransactionControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TransactionController::reorder - * @todo Implement testReorder(). + * Implement testReorder(). */ public function testReorder() { @@ -67,7 +67,7 @@ class TransactionControllerTest extends TestCase /** * @covers FireflyIII\Http\Controllers\TransactionController::show - * @todo Implement testShow(). + * Implement testShow(). */ public function testShow() {