Remove method pointers from tests.

This commit is contained in:
James Cole
2018-08-09 20:17:15 +02:00
parent 5908b4b000
commit eefa84a77b
124 changed files with 636 additions and 777 deletions

View File

@@ -706,7 +706,6 @@ class TransactionFactoryTest extends TestCase
// objects:
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
$reconAccount = $this->user()->accounts()->where('account_type_id', 10)->first();
//$opposing = $this->user()->accounts()->where('id', '!=', $asset->id)->where('account_type_id', 3)->first();
$euro = TransactionCurrency::first();
$foreign = TransactionCurrency::where('id', '!=', $euro->id)->first();

View File

@@ -39,7 +39,7 @@ class AdminEventHandlerTest extends TestCase
{
/**
* @covers \FireflyIII\Handlers\Events\AdminEventHandler::sendTestMessage
* @covers \FireflyIII\Handlers\Events\AdminEventHandler
* @covers \FireflyIII\Events\AdminRequestedTestMessage
*/
public function testSendNoMessage(): void
@@ -55,7 +55,7 @@ class AdminEventHandlerTest extends TestCase
}
/**
* @covers \FireflyIII\Handlers\Events\AdminEventHandler::sendTestMessage
* @covers \FireflyIII\Handlers\Events\AdminEventHandler
* @covers \FireflyIII\Events\AdminRequestedTestMessage
*/
public function testSendTestMessage(): void

View File

@@ -47,7 +47,7 @@ use Tests\TestCase;
class UserEventHandlerTest extends TestCase
{
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::attachUserRole
* @covers \FireflyIII\Handlers\Events\UserEventHandler
* @covers \FireflyIII\Events\RegisteredUser
*/
public function testAttachUserRole(): void
@@ -64,7 +64,7 @@ class UserEventHandlerTest extends TestCase
}
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::checkSingleUserIsAdmin
* @covers \FireflyIII\Handlers\Events\UserEventHandler
*/
public function testCheckSingleUserIsAdminMulti(): void
{
@@ -82,7 +82,7 @@ class UserEventHandlerTest extends TestCase
}
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::checkSingleUserIsAdmin
* @covers \FireflyIII\Handlers\Events\UserEventHandler
*/
public function testCheckSingleUserIsAdminNoRole(): void
{
@@ -104,7 +104,7 @@ class UserEventHandlerTest extends TestCase
}
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::checkSingleUserIsAdmin
* @covers \FireflyIII\Handlers\Events\UserEventHandler
*/
public function testCheckSingleUserIsAdminNotAdmin(): void
{
@@ -124,7 +124,7 @@ class UserEventHandlerTest extends TestCase
}
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::checkSingleUserIsAdmin
* @covers \FireflyIII\Handlers\Events\UserEventHandler
*/
public function testCheckSingleUserIsAdminSingle(): void
{
@@ -142,7 +142,7 @@ class UserEventHandlerTest extends TestCase
}
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::sendEmailChangeConfirmMail
* @covers \FireflyIII\Handlers\Events\UserEventHandler
* @covers \FireflyIII\Events\UserChangedEmail
*/
public function testSendEmailChangeConfirmMail(): void
@@ -165,7 +165,7 @@ class UserEventHandlerTest extends TestCase
}
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::sendEmailChangeUndoMail
* @covers \FireflyIII\Handlers\Events\UserEventHandler
* @covers \FireflyIII\Events\UserChangedEmail
*/
public function testSendEmailChangeUndoMail(): void
@@ -189,7 +189,7 @@ class UserEventHandlerTest extends TestCase
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::sendNewPassword
* @covers \FireflyIII\Handlers\Events\UserEventHandler
* @covers \FireflyIII\Events\RequestedNewPassword
*/
public function testSendNewPassword(): void
@@ -212,7 +212,7 @@ class UserEventHandlerTest extends TestCase
}
/**
* @covers \FireflyIII\Handlers\Events\UserEventHandler::sendRegistrationMail
* @covers \FireflyIII\Handlers\Events\UserEventHandler
* @covers \FireflyIII\Events\RegisteredUser
*/
public function testSendRegistrationMail(): void

View File

@@ -39,7 +39,7 @@ use Tests\TestCase;
class AttachmentHelperTest extends TestCase
{
/**
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getAttachmentLocation
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper
*/
public function testGetAttachmentLocation(): void
{
@@ -52,14 +52,7 @@ class AttachmentHelperTest extends TestCase
/**
* Test invalid mime thing
*
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::__construct
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::saveAttachmentsForModel
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::processFile
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::validateUpload
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::validMime
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::hasFile
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getMessages
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getErrors
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper
*/
public function testInvalidMime(): void
{
@@ -80,15 +73,7 @@ class AttachmentHelperTest extends TestCase
/**
* Test valid file upload.
*
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::__construct
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::saveAttachmentsForModel
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::processFile
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::validateUpload
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::validMime
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::hasFile
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getMessages
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getErrors
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getAttachments
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper
*/
public function testSave(): void
{
@@ -115,8 +100,7 @@ class AttachmentHelperTest extends TestCase
/**
* Test double file upload. Needs to be after testSave.
*
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::__construct
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::saveAttachmentsForModel
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper
*/
public function testSaveEmpty(): void
{
@@ -131,15 +115,7 @@ class AttachmentHelperTest extends TestCase
/**
* Test double file upload. Needs to be after testSave.
*
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::__construct
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::saveAttachmentsForModel
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::processFile
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::validateUpload
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::validMime
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::hasFile
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getMessages
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getErrors
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper::getAttachments
* @covers \FireflyIII\Helpers\Attachments\AttachmentHelper
*/
public function testSaveSecond(): void
{

View File

@@ -31,7 +31,7 @@ use Tests\TestCase;
class AmountCreditTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Converter\AmountCredit::convert()
* @covers \FireflyIII\Import\Converter\AmountCredit
*/
public function testConvert(): void
{
@@ -174,7 +174,7 @@ class AmountCreditTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\AmountCredit::convert()
* @covers \FireflyIII\Import\Converter\AmountCredit
*/
public function testConvertNull(): void
{

View File

@@ -31,7 +31,7 @@ use Tests\TestCase;
class AmountDebitTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Converter\AmountDebit::convert()
* @covers \FireflyIII\Import\Converter\AmountDebit
*/
public function testConvert(): void
{
@@ -173,7 +173,7 @@ class AmountDebitTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\AmountDebit::convert()
* @covers \FireflyIII\Import\Converter\AmountDebit
*/
public function testConvertNull(): void
{

View File

@@ -31,8 +31,7 @@ use Tests\TestCase;
class AmountTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Converter\Amount::convert()
* @covers \FireflyIII\Import\Converter\Amount::stripAmount()
* @covers \FireflyIII\Import\Converter\Amount
*/
public function testConvert(): void
{
@@ -173,7 +172,7 @@ class AmountTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\Amount::convert()
* @covers \FireflyIII\Import\Converter\Amount
*/
public function testConvertNull(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class INGDebitCreditTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Converter\INGDebitCredit::convert()
* @covers \FireflyIII\Import\Converter\INGDebitCredit
*/
public function testConvertAf(): void
{
@@ -42,7 +42,7 @@ class INGDebitCreditTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\INGDebitCredit::convert()
* @covers \FireflyIII\Import\Converter\INGDebitCredit
*/
public function testConvertAnything(): void
{
@@ -52,7 +52,7 @@ class INGDebitCreditTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\INGDebitCredit::convert()
* @covers \FireflyIII\Import\Converter\INGDebitCredit
*/
public function testConvertBij(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class RabobankDebitCreditTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit::convert()
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit
*/
public function testConvertAnything(): void
{
@@ -42,7 +42,7 @@ class RabobankDebitCreditTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit::convert()
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit
*/
public function testConvertCredit(): void
{
@@ -52,7 +52,7 @@ class RabobankDebitCreditTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit::convert()
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit
*/
public function testConvertCreditOld(): void
{
@@ -62,7 +62,7 @@ class RabobankDebitCreditTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit::convert()
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit
*/
public function testConvertDebit(): void
{
@@ -72,7 +72,7 @@ class RabobankDebitCreditTest extends TestCase
}
/**
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit::convert()
* @covers \FireflyIII\Import\Converter\RabobankDebitCredit
*/
public function testConvertDebitOld(): void
{

View File

@@ -36,7 +36,7 @@ use Tests\TestCase;
class AssetAccountIbansTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\AssetAccountIbans::getMap()
* @covers \FireflyIII\Import\Mapper\AssetAccountIbans
*/
public function testGetMapBasic(): void
{

View File

@@ -36,7 +36,7 @@ use Tests\TestCase;
class AssetAccountsTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\AssetAccounts::getMap()
* @covers \FireflyIII\Import\Mapper\AssetAccounts
*/
public function testGetMapBasic(): void
{

View File

@@ -35,7 +35,7 @@ use Tests\TestCase;
class BillsTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\Bills::getMap()
* @covers \FireflyIII\Import\Mapper\Bills
*/
public function testGetMapBasic(): void
{

View File

@@ -35,7 +35,7 @@ use Tests\TestCase;
class BudgetsTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\Budgets::getMap()
* @covers \FireflyIII\Import\Mapper\Budgets
*/
public function testGetMapBasic(): void
{

View File

@@ -35,7 +35,7 @@ use Tests\TestCase;
class CategoriesTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\Categories::getMap()
* @covers \FireflyIII\Import\Mapper\Categories
*/
public function testGetMapBasic(): void
{

View File

@@ -36,7 +36,7 @@ use Tests\TestCase;
class OpposingAccountIbansTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\OpposingAccountIbans::getMap()
* @covers \FireflyIII\Import\Mapper\OpposingAccountIbans
*/
public function testGetMapBasic(): void
{

View File

@@ -36,7 +36,7 @@ use Tests\TestCase;
class OpposingAccountsTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\OpposingAccounts::getMap()
* @covers \FireflyIII\Import\Mapper\OpposingAccounts
*/
public function testGetMapBasic(): void
{

View File

@@ -35,7 +35,7 @@ use Tests\TestCase;
class TagsTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\Tags::getMap()
* @covers \FireflyIII\Import\Mapper\Tags
*/
public function testGetMapBasic(): void
{

View File

@@ -35,7 +35,7 @@ use Tests\TestCase;
class TransactionCurrenciesTest extends TestCase
{
/**
* @covers \FireflyIII\Import\Mapper\TransactionCurrencies::getMap()
* @covers \FireflyIII\Import\Mapper\TransactionCurrencies
*/
public function testGetMapBasic(): void
{

View File

@@ -33,7 +33,7 @@ class TagsCommaTest extends TestCase
{
/**
* \FireflyIII\Import\MapperPreProcess\TagsComma::run
* \FireflyIII\Import\MapperPreProcess\TagsComma
*/
public function testBasic(): void
{

View File

@@ -33,7 +33,7 @@ class TagsSpaceTest extends TestCase
{
/**
* \FireflyIII\Import\MapperPreProcess\TagsSpace::run
* \FireflyIII\Import\MapperPreProcess\TagsSpace
*/
public function testBasic(): void
{

View File

@@ -36,7 +36,7 @@ use Tests\TestCase;
class AuthenticateTwoFactorTest extends TestCase
{
/**
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor::handle
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor
*/
public function testMiddleware(): void
{
@@ -54,7 +54,7 @@ class AuthenticateTwoFactorTest extends TestCase
* cookie : false
*
*
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor::handle
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor
*/
public function testMiddlewareNoTwoFA(): void
{
@@ -85,7 +85,7 @@ class AuthenticateTwoFactorTest extends TestCase
* cookie : false
*
*
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor::handle
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor
*/
public function testMiddlewareTwoFAAuthed(): void
{
@@ -118,7 +118,7 @@ class AuthenticateTwoFactorTest extends TestCase
* cookie : false
*
*
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor::handle
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor
*/
public function testMiddlewareTwoFANoSecret(): void
{
@@ -149,7 +149,7 @@ class AuthenticateTwoFactorTest extends TestCase
* cookie : false
*
*
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor::handle
* @covers \FireflyIII\Http\Middleware\AuthenticateTwoFactor
*/
public function testMiddlewareTwoFASecret(): void
{

View File

@@ -42,7 +42,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Account::routeBinder
* @covers \FireflyIII\Models\Account
*/
public function testAccount(): void
{
@@ -59,7 +59,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\AccountList::routeBinder
* @covers \FireflyIII\Support\Binder\AccountList
*/
public function testAccountList(): void
{
@@ -76,7 +76,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\AccountList::routeBinder
* @covers \FireflyIII\Support\Binder\AccountList
*/
public function testAccountListEmpty(): void
{
@@ -92,7 +92,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\AccountList::routeBinder
* @covers \FireflyIII\Support\Binder\AccountList
*/
public function testAccountListInvalid(): void
{
@@ -109,7 +109,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\AccountList::routeBinder
* @covers \FireflyIII\Support\Binder\AccountList
*/
public function testAccountListNotLoggedIn(): void
{
@@ -124,7 +124,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Account::routeBinder
* @covers \FireflyIII\Models\Account
*/
public function testAccountNotFound(): void
{
@@ -141,7 +141,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Account::routeBinder
* @covers \FireflyIII\Models\Account
*/
public function testAccountNotLoggedIn(): void
{
@@ -157,7 +157,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Attachment::routeBinder
* @covers \FireflyIII\Models\Attachment
*/
public function testAttachment(): void
{
@@ -174,7 +174,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Attachment::routeBinder
* @covers \FireflyIII\Models\Attachment
*/
public function testAttachmentNotFound(): void
{
@@ -191,7 +191,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Attachment::routeBinder
* @covers \FireflyIII\Models\Attachment
*/
public function testAttachmentNotLoggedIn(): void
{
@@ -207,7 +207,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Bill::routeBinder
* @covers \FireflyIII\Models\Bill
*/
public function testBill(): void
{
@@ -224,7 +224,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Bill::routeBinder
* @covers \FireflyIII\Models\Bill
*/
public function testBillNotFound(): void
{
@@ -241,7 +241,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Bill::routeBinder
* @covers \FireflyIII\Models\Bill
*/
public function testBillNotLoggedIn(): void
{
@@ -257,7 +257,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Budget::routeBinder
* @covers \FireflyIII\Models\Budget
*/
public function testBudget(): void
{
@@ -274,7 +274,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\BudgetLimit::routeBinder
* @covers \FireflyIII\Models\BudgetLimit
*/
public function testBudgetLimit(): void
{
@@ -291,7 +291,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\BudgetLimit::routeBinder
* @covers \FireflyIII\Models\BudgetLimit
*/
public function testBudgetLimitNotFound(): void
{
@@ -308,7 +308,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\BudgetLimit::routeBinder
* @covers \FireflyIII\Models\BudgetLimit
*/
public function testBudgetLimitNotLoggedIn(): void
{
@@ -324,7 +324,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\BudgetList::routeBinder
* @covers \FireflyIII\Support\Binder\BudgetList
*/
public function testBudgetList(): void
{
@@ -341,7 +341,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\BudgetList::routeBinder
* @covers \FireflyIII\Support\Binder\BudgetList
*/
public function testBudgetListInvalid(): void
{
@@ -357,7 +357,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Budget::routeBinder
* @covers \FireflyIII\Models\Budget
*/
public function testBudgetNotFound(): void
{
@@ -374,7 +374,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Budget::routeBinder
* @covers \FireflyIII\Models\Budget
*/
public function testBudgetNotLoggedIn(): void
{
@@ -390,7 +390,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Category::routeBinder
* @covers \FireflyIII\Models\Category
*/
public function testCategory(): void
{
@@ -407,7 +407,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\CategoryList::routeBinder
* @covers \FireflyIII\Support\Binder\CategoryList
*/
public function testCategoryList(): void
{
@@ -424,7 +424,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\CategoryList::routeBinder
* @covers \FireflyIII\Support\Binder\CategoryList
*/
public function testCategoryListInvalid(): void
{
@@ -440,7 +440,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Category::routeBinder
* @covers \FireflyIII\Models\Category
*/
public function testCategoryNotFound(): void
{
@@ -457,7 +457,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Category::routeBinder
* @covers \FireflyIII\Models\Category
*/
public function testCategoryNotLoggedIn(): void
{
@@ -473,7 +473,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\CurrencyCode::routeBinder
* @covers \FireflyIII\Support\Binder\CurrencyCode
*/
public function testCurrencyCode(): void
{
@@ -490,7 +490,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\CurrencyCode::routeBinder
* @covers \FireflyIII\Support\Binder\CurrencyCode
*/
public function testCurrencyCodeNotFound(): void
{
@@ -507,7 +507,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\CurrencyCode::routeBinder
* @covers \FireflyIII\Support\Binder\CurrencyCode
*/
public function testCurrencyCodeNotLoggedIn(): void
{
@@ -523,7 +523,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\Date::routeBinder
* @covers \FireflyIII\Support\Binder\Date
*/
public function testDate(): void
{
@@ -547,7 +547,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\Date::routeBinder
* @covers \FireflyIII\Support\Binder\Date
*/
public function testDateCurrentMonthEnd(): void
{
@@ -572,7 +572,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\Date::routeBinder
* @covers \FireflyIII\Support\Binder\Date
*/
public function testDateCurrentMonthStart(): void
{
@@ -597,7 +597,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\Date::routeBinder
* @covers \FireflyIII\Support\Binder\Date
*/
public function testDateCurrentYearEnd(): void
{
@@ -622,7 +622,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\Date::routeBinder
* @covers \FireflyIII\Support\Binder\Date
*/
public function testDateCurrentYearStart(): void
{
@@ -647,7 +647,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\Date::routeBinder
* @covers \FireflyIII\Support\Binder\Date
*/
public function testDateFiscalYearEnd(): void
{
@@ -673,7 +673,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\Date::routeBinder
* @covers \FireflyIII\Support\Binder\Date
*/
public function testDateFiscalYearStart(): void
{
@@ -699,7 +699,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\Date::routeBinder
* @covers \FireflyIII\Support\Binder\Date
*/
public function testDateInvalid(): void
{
@@ -721,7 +721,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\ExportJob::routeBinder
* @covers \FireflyIII\Models\ExportJob
*/
public function testExportJob(): void
{
@@ -738,7 +738,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\ExportJob::routeBinder
* @covers \FireflyIII\Models\ExportJob
*/
public function testExportJobNotFound(): void
{
@@ -755,7 +755,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\ExportJob::routeBinder
* @covers \FireflyIII\Models\ExportJob
*/
public function testExportJobNotLoggedIn(): void
{
@@ -771,7 +771,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\ImportJob::routeBinder
* @covers \FireflyIII\Models\ImportJob
*/
public function testImportJob(): void
{
@@ -788,7 +788,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\ImportJob::routeBinder
* @covers \FireflyIII\Models\ImportJob
*/
public function testImportJobNotFound(): void
{
@@ -805,7 +805,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\ImportJob::routeBinder
* @covers \FireflyIII\Models\ImportJob
*/
public function testImportJobNotLoggedIn(): void
{
@@ -821,7 +821,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\JournalList::routeBinder
* @covers \FireflyIII\Support\Binder\JournalList
*/
public function testJournalList(): void
{
@@ -838,7 +838,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\JournalList::routeBinder
* @covers \FireflyIII\Support\Binder\JournalList
*/
public function testJournalListEmpty(): void
{
@@ -854,7 +854,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\LinkType::routeBinder
* @covers \FireflyIII\Models\LinkType
*/
public function testLinkType(): void
{
@@ -871,7 +871,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\LinkType::routeBinder
* @covers \FireflyIII\Models\LinkType
*/
public function testLinkTypeNotFound(): void
{
@@ -888,7 +888,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\LinkType::routeBinder
* @covers \FireflyIII\Models\LinkType
*/
public function testLinkTypeNotLoggedIn(): void
{
@@ -904,7 +904,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\PiggyBank::routeBinder
* @covers \FireflyIII\Models\PiggyBank
*/
public function testPiggyBank(): void
{
@@ -921,7 +921,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\PiggyBank::routeBinder
* @covers \FireflyIII\Models\PiggyBank
*/
public function testPiggyBankNotFound(): void
{
@@ -938,7 +938,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\PiggyBank::routeBinder
* @covers \FireflyIII\Models\PiggyBank
*/
public function testPiggyBankNotLoggedIn(): void
{
@@ -954,7 +954,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Rule::routeBinder
* @covers \FireflyIII\Models\Rule
*/
public function testRule(): void
{
@@ -971,7 +971,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\RuleGroup::routeBinder
* @covers \FireflyIII\Models\RuleGroup
*/
public function testRuleGroup(): void
{
@@ -988,7 +988,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\RuleGroup::routeBinder
* @covers \FireflyIII\Models\RuleGroup
*/
public function testRuleGroupNotFound(): void
{
@@ -1005,7 +1005,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\RuleGroup::routeBinder
* @covers \FireflyIII\Models\RuleGroup
*/
public function testRuleGroupNotLoggedIn(): void
{
@@ -1021,7 +1021,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Rule::routeBinder
* @covers \FireflyIII\Models\Rule
*/
public function testRuleNotFound(): void
{
@@ -1038,7 +1038,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Rule::routeBinder
* @covers \FireflyIII\Models\Rule
*/
public function testRuleNotLoggedIn(): void
{
@@ -1054,7 +1054,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionJournal::routeBinder
* @covers \FireflyIII\Models\TransactionJournal
*/
public function testTJ(): void
{
@@ -1071,7 +1071,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionJournal::routeBinder
* @covers \FireflyIII\Models\TransactionJournal
*/
public function testTJNotFound(): void
{
@@ -1088,7 +1088,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionJournal::routeBinder
* @covers \FireflyIII\Models\TransactionJournal
*/
public function testTJNotLoggedIn(): void
{
@@ -1104,7 +1104,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Tag::routeBinder
* @covers \FireflyIII\Models\Tag
*/
public function testTag(): void
{
@@ -1121,7 +1121,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\TagList::routeBinder
* @covers \FireflyIII\Support\Binder\TagList
*/
public function testTagList(): void
{
@@ -1147,7 +1147,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\TagList::routeBinder
* @covers \FireflyIII\Support\Binder\TagList
*/
public function testTagListEmpty(): void
{
@@ -1167,7 +1167,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Tag::routeBinder
* @covers \FireflyIII\Models\Tag
*/
public function testTagNotFound(): void
{
@@ -1184,7 +1184,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\Tag::routeBinder
* @covers \FireflyIII\Models\Tag
*/
public function testTagNotLoggedIn(): void
{
@@ -1200,7 +1200,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionCurrency::routeBinder
* @covers \FireflyIII\Models\TransactionCurrency
*/
public function testTransactionCurrency(): void
{
@@ -1217,7 +1217,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionCurrency::routeBinder
* @covers \FireflyIII\Models\TransactionCurrency
*/
public function testTransactionCurrencyNotFound(): void
{
@@ -1234,7 +1234,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionCurrency::routeBinder
* @covers \FireflyIII\Models\TransactionCurrency
*/
public function testTransactionCurrencyNotLoggedIn(): void
{
@@ -1250,7 +1250,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionJournalLink::routeBinder
* @covers \FireflyIII\Models\TransactionJournalLink
*/
public function testTransactionJournalLink(): void
{
@@ -1267,7 +1267,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionJournalLink::routeBinder
* @covers \FireflyIII\Models\TransactionJournalLink
*/
public function testTransactionJournalLinkNotFound(): void
{
@@ -1284,7 +1284,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionJournalLink::routeBinder
* @covers \FireflyIII\Models\TransactionJournalLink
*/
public function testTransactionJournalLinkNotLoggedIn(): void
{
@@ -1300,7 +1300,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionType::routeBinder
* @covers \FireflyIII\Models\TransactionType
*/
public function testTransactionType(): void
{
@@ -1317,7 +1317,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionType::routeBinder
* @covers \FireflyIII\Models\TransactionType
*/
public function testTransactionTypeNotFound(): void
{
@@ -1334,7 +1334,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Models\TransactionType::routeBinder
* @covers \FireflyIII\Models\TransactionType
*/
public function testTransactionTypeNotLoggedIn(): void
{
@@ -1350,7 +1350,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\UnfinishedJournal::routeBinder
* @covers \FireflyIII\Support\Binder\UnfinishedJournal
*/
public function testUnfinishedJournal(): void
{
@@ -1367,7 +1367,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\UnfinishedJournal::routeBinder
* @covers \FireflyIII\Support\Binder\UnfinishedJournal
*/
public function testUnfinishedJournalFinished(): void
{
@@ -1383,7 +1383,7 @@ class BinderTest extends TestCase
/**
* @covers \FireflyIII\Http\Middleware\Binder
* @covers \FireflyIII\Support\Binder\UnfinishedJournal::routeBinder
* @covers \FireflyIII\Support\Binder\UnfinishedJournal
*/
public function testUnfinishedJournalNotLoggedIn(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class IsAdminTest extends TestCase
{
/**
* @covers \FireflyIII\Http\Middleware\IsAdmin::handle
* @covers \FireflyIII\Http\Middleware\IsAdmin
*/
public function testMiddleware(): void
{
@@ -45,7 +45,7 @@ class IsAdminTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Middleware\IsAdmin::handle
* @covers \FireflyIII\Http\Middleware\IsAdmin
*/
public function testMiddlewareAjax(): void
{
@@ -56,7 +56,7 @@ class IsAdminTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Middleware\IsAdmin::handle
* @covers \FireflyIII\Http\Middleware\IsAdmin
*/
public function testMiddlewareNotOwner(): void
{
@@ -68,7 +68,7 @@ class IsAdminTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Middleware\IsAdmin::handle
* @covers \FireflyIII\Http\Middleware\IsAdmin
*/
public function testMiddlewareOwner(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class IsSandstormUserTest extends TestCase
{
/**
* @covers \FireflyIII\Http\Middleware\IsSandStormUser::handle
* @covers \FireflyIII\Http\Middleware\IsSandStormUser
*/
public function testMiddlewareNotAuthenticated(): void
{
@@ -44,7 +44,7 @@ class IsSandstormUserTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Middleware\IsSandStormUser::handle
* @covers \FireflyIII\Http\Middleware\IsSandStormUser
*/
public function testMiddlewareNotSandStorm(): void
{
@@ -55,7 +55,7 @@ class IsSandstormUserTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Middleware\IsSandStormUser::handle
* @covers \FireflyIII\Http\Middleware\IsSandStormUser
*/
public function testMiddlewareSandstorm(): void
{

View File

@@ -36,7 +36,7 @@ use Tests\TestCase;
class RedirectIf2FAAuthenticatedTest extends TestCase
{
/**
* @covers \FireflyIII\Http\Middleware\RedirectIfTwoFactorAuthenticated::handle
* @covers \FireflyIII\Http\Middleware\RedirectIfTwoFactorAuthenticated
*/
public function testMiddleware(): void
{
@@ -45,7 +45,7 @@ class RedirectIf2FAAuthenticatedTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Middleware\RedirectIfTwoFactorAuthenticated::handle
* @covers \FireflyIII\Http\Middleware\RedirectIfTwoFactorAuthenticated
*/
public function testMiddlewareAuthenticated(): void
{
@@ -69,7 +69,7 @@ class RedirectIf2FAAuthenticatedTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Middleware\RedirectIfTwoFactorAuthenticated::handle
* @covers \FireflyIII\Http\Middleware\RedirectIfTwoFactorAuthenticated
*/
public function testMiddlewareLightAuth(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class RedirectIfAuthenticatedTest extends TestCase
{
/**
* @covers \FireflyIII\Http\Middleware\RedirectIfAuthenticated::handle
* @covers \FireflyIII\Http\Middleware\RedirectIfAuthenticated
*/
public function testMiddleware(): void
{
@@ -43,7 +43,7 @@ class RedirectIfAuthenticatedTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Middleware\RedirectIfAuthenticated::handle
* @covers \FireflyIII\Http\Middleware\RedirectIfAuthenticated
*/
public function testMiddlewareAuthenticated(): void
{

View File

@@ -36,7 +36,7 @@ use Tests\TestCase;
class SandstormTest extends TestCase
{
/**
* @covers \FireflyIII\Http\Middleware\Sandstorm::handle
* @covers \FireflyIII\Http\Middleware\Sandstorm
*/
public function testMiddlewareBasic(): void
{

View File

@@ -29,6 +29,9 @@ use FireflyIII\Repositories\ImportJob\ImportJobRepositoryInterface;
use FireflyIII\Support\Import\JobConfiguration\Bunq\NewBunqJobHandler;
use Tests\TestCase;
/**
* Class NewBunqJobHandlerTest
*/
class NewBunqJobHandlerTest extends TestCase
{
/**
@@ -53,8 +56,6 @@ class NewBunqJobHandlerTest extends TestCase
$repository = $this->mock(ImportJobRepositoryInterface::class);
// mock calls
$repository->shouldReceive('setUser')->once();
//$repository->shouldReceive('getConfiguration')->andReturn([])->once();
//$repository->shouldReceive('setConfiguration')->withArgs([Mockery::any(), $expected])->once();
$handler = new NewBunqJobHandler();
$handler->setImportJob($job);

View File

@@ -35,8 +35,8 @@ use Tests\TestCase;
class AddTagTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\AddTag::__construct
* @covers \FireflyIII\TransactionRules\Actions\AddTag::act()
* @covers \FireflyIII\TransactionRules\Actions\AddTag
* @covers \FireflyIII\TransactionRules\Actions\AddTag
*/
public function testActExistingTag(): void
{
@@ -62,7 +62,7 @@ class AddTagTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Actions\AddTag::act()
* @covers \FireflyIII\TransactionRules\Actions\AddTag
*/
public function testActNoTag(): void
{

View File

@@ -33,8 +33,8 @@ use Tests\TestCase;
class AppendDescriptionTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\AppendDescription::__construct
* @covers \FireflyIII\TransactionRules\Actions\AppendDescription::act()
* @covers \FireflyIII\TransactionRules\Actions\AppendDescription
* @covers \FireflyIII\TransactionRules\Actions\AppendDescription
*/
public function testActExistingTag(): void
{

View File

@@ -34,8 +34,7 @@ use Tests\TestCase;
class AppendNotesTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\AppendNotes::__construct()
* @covers \FireflyIII\TransactionRules\Actions\AppendNotes::act()
* @covers \FireflyIII\TransactionRules\Actions\AppendNotes
*/
public function testAct(): void
{
@@ -63,8 +62,8 @@ class AppendNotesTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Actions\AppendNotes::__construct()
* @covers \FireflyIII\TransactionRules\Actions\AppendNotes::act()
* @covers \FireflyIII\TransactionRules\Actions\AppendNotes()
* @covers \FireflyIII\TransactionRules\Actions\AppendNotes
*/
public function testActNewNote(): void
{

View File

@@ -34,8 +34,7 @@ use Tests\TestCase;
class ClearBudgetTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\ClearBudget::__construct()
* @covers \FireflyIII\TransactionRules\Actions\ClearBudget::act()
* @covers \FireflyIII\TransactionRules\Actions\ClearBudget
*/
public function testAct(): void
{

View File

@@ -34,8 +34,7 @@ use Tests\TestCase;
class ClearCategoryTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\ClearCategory::__construct()
* @covers \FireflyIII\TransactionRules\Actions\ClearCategory::act()
* @covers \FireflyIII\TransactionRules\Actions\ClearCategory
*/
public function testAct(): void
{

View File

@@ -35,8 +35,7 @@ use Tests\TestCase;
class ClearNotesTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\ClearNotes::__construct()
* @covers \FireflyIII\TransactionRules\Actions\ClearNotes::act()
* @covers \FireflyIII\TransactionRules\Actions\ClearNotes
*/
public function testAct(): void
{

View File

@@ -33,8 +33,7 @@ use Tests\TestCase;
class PrependDescriptionTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\PrependDescription::__construct()
* @covers \FireflyIII\TransactionRules\Actions\PrependDescription::act()
* @covers \FireflyIII\TransactionRules\Actions\PrependDescription
*/
public function testAct(): void
{

View File

@@ -34,8 +34,7 @@ use Tests\TestCase;
class PrependNotesTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\PrependNotes::__construct()
* @covers \FireflyIII\TransactionRules\Actions\PrependNotes::act()
* @covers \FireflyIII\TransactionRules\Actions\PrependNotes
*/
public function testAct(): void
{
@@ -63,8 +62,8 @@ class PrependNotesTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Actions\PrependNotes::__construct()
* @covers \FireflyIII\TransactionRules\Actions\PrependNotes::act()
* @covers \FireflyIII\TransactionRules\Actions\PrependNotes()
* @covers \FireflyIII\TransactionRules\Actions\PrependNotes
*/
public function testActNewNote(): void
{

View File

@@ -34,8 +34,7 @@ use Tests\TestCase;
class RemoveAllTagsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\RemoveAllTags::__construct()
* @covers \FireflyIII\TransactionRules\Actions\RemoveAllTags::act()
* @covers \FireflyIII\TransactionRules\Actions\RemoveAllTags
*/
public function testAct(): void
{

View File

@@ -34,8 +34,7 @@ use Tests\TestCase;
class RemoveTagTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\RemoveTag::__construct()
* @covers \FireflyIII\TransactionRules\Actions\RemoveTag::act()
* @covers \FireflyIII\TransactionRules\Actions\RemoveTag
*/
public function testAct(): void
{
@@ -61,8 +60,8 @@ class RemoveTagTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Actions\RemoveTag::__construct()
* @covers \FireflyIII\TransactionRules\Actions\RemoveTag::act()
* @covers \FireflyIII\TransactionRules\Actions\RemoveTag()
* @covers \FireflyIII\TransactionRules\Actions\RemoveTag
*/
public function testActNoTag(): void
{

View File

@@ -36,8 +36,7 @@ use Tests\TestCase;
class SetBudgetTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\SetBudget::__construct()
* @covers \FireflyIII\TransactionRules\Actions\SetBudget::act()
* @covers \FireflyIII\TransactionRules\Actions\SetBudget
*/
public function testAct(): void
{

View File

@@ -34,8 +34,7 @@ use Tests\TestCase;
class SetCategoryTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\SetCategory::__construct()
* @covers \FireflyIII\TransactionRules\Actions\SetCategory::act()
* @covers \FireflyIII\TransactionRules\Actions\SetCategory
*/
public function testAct(): void
{

View File

@@ -33,8 +33,7 @@ use Tests\TestCase;
class SetDescriptionTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\SetDescription::__construct()
* @covers \FireflyIII\TransactionRules\Actions\SetDescription::act()
* @covers \FireflyIII\TransactionRules\Actions\SetDescription
*/
public function testAct(): void
{

View File

@@ -34,8 +34,7 @@ use Tests\TestCase;
class SetNotesTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Actions\SetNotes::__construct()
* @covers \FireflyIII\TransactionRules\Actions\SetNotes::act()
* @covers \FireflyIII\TransactionRules\Actions\SetNotes
*/
public function testAct(): void
{
@@ -63,8 +62,8 @@ class SetNotesTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Actions\SetNotes::__construct()
* @covers \FireflyIII\TransactionRules\Actions\SetNotes::act()
* @covers \FireflyIII\TransactionRules\Actions\SetNotes()
* @covers \FireflyIII\TransactionRules\Actions\SetNotes
*/
public function testActNoNotes(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class AmountExactlyTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountExactly::triggered
* @covers \FireflyIII\TransactionRules\Triggers\AmountExactly
*/
public function testTriggeredExact(): void
{
@@ -49,7 +49,7 @@ class AmountExactlyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountExactly::triggered
* @covers \FireflyIII\TransactionRules\Triggers\AmountExactly
*/
public function testTriggeredNotExact(): void
{
@@ -65,7 +65,7 @@ class AmountExactlyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountExactly::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\AmountExactly
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -75,7 +75,7 @@ class AmountExactlyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountExactly::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\AmountExactly
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class AmountLessTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess::triggered
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess
*/
public function testTriggeredExact(): void
{
@@ -50,7 +50,7 @@ class AmountLessTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess::triggered
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess
*/
public function testTriggeredLess(): void
{
@@ -67,7 +67,7 @@ class AmountLessTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess::triggered
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess
*/
public function testTriggeredNotLess(): void
{
@@ -84,7 +84,7 @@ class AmountLessTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -94,7 +94,7 @@ class AmountLessTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\AmountLess
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class AmountMoreTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore::triggered
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore
*/
public function testTriggeredExact(): void
{
@@ -50,7 +50,7 @@ class AmountMoreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore::triggered
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore
*/
public function testTriggeredMore(): void
{
@@ -67,7 +67,7 @@ class AmountMoreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore::triggered
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore
*/
public function testTriggeredNotMore(): void
{
@@ -84,7 +84,7 @@ class AmountMoreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -94,7 +94,7 @@ class AmountMoreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore
*/
public function testWillMatchEverythingNull(): void
{
@@ -104,7 +104,7 @@ class AmountMoreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\AmountMore
*/
public function testWillMatchEverythingZero(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class BudgetIsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs
*/
public function testTriggeredJournal(): void
{
@@ -54,7 +54,7 @@ class BudgetIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs
*/
public function testTriggeredNotJournal(): void
{
@@ -75,7 +75,7 @@ class BudgetIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs
*/
public function testTriggeredTransaction(): void
{
@@ -104,7 +104,7 @@ class BudgetIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -114,7 +114,7 @@ class BudgetIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\BudgetIs
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class CategoryIsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs
*/
public function testTriggeredJournal(): void
{
@@ -52,7 +52,7 @@ class CategoryIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs
*/
public function testTriggeredNotJournal(): void
{
@@ -73,7 +73,7 @@ class CategoryIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs
*/
public function testTriggeredTransaction(): void
{
@@ -97,7 +97,7 @@ class CategoryIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -107,7 +107,7 @@ class CategoryIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\CategoryIs
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class DescriptionContainsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains
*/
public function testTriggeredCase(): void
{
@@ -44,7 +44,7 @@ class DescriptionContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains
*/
public function testTriggeredDefault(): void
{
@@ -56,7 +56,7 @@ class DescriptionContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains
*/
public function testTriggeredEnd(): void
{
@@ -68,7 +68,7 @@ class DescriptionContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains
*/
public function testTriggeredNot(): void
{
@@ -80,7 +80,7 @@ class DescriptionContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains
*/
public function testTriggeredStart(): void
{
@@ -92,7 +92,7 @@ class DescriptionContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -102,7 +102,7 @@ class DescriptionContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -112,7 +112,7 @@ class DescriptionContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionContains
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class DescriptionEndsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testTriggeredCase(): void
{
@@ -44,7 +44,7 @@ class DescriptionEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testTriggeredClose(): void
{
@@ -56,7 +56,7 @@ class DescriptionEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testTriggeredDefault(): void
{
@@ -68,7 +68,7 @@ class DescriptionEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testTriggeredLongSearch(): void
{
@@ -80,7 +80,7 @@ class DescriptionEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testTriggeredLonger(): void
{
@@ -92,7 +92,7 @@ class DescriptionEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testTriggeredNot(): void
{
@@ -104,7 +104,7 @@ class DescriptionEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -114,7 +114,7 @@ class DescriptionEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -124,7 +124,7 @@ class DescriptionEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionEnds
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class DescriptionIsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs
*/
public function testTriggeredCase(): void
{
@@ -44,7 +44,7 @@ class DescriptionIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs
*/
public function testTriggeredClose(): void
{
@@ -56,7 +56,7 @@ class DescriptionIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs
*/
public function testTriggeredDefault(): void
{
@@ -68,7 +68,7 @@ class DescriptionIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs
*/
public function testTriggeredNot(): void
{
@@ -80,7 +80,7 @@ class DescriptionIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -90,7 +90,7 @@ class DescriptionIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionIs
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class DescriptionStartsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts
*/
public function testTriggeredCase(): void
{
@@ -44,7 +44,7 @@ class DescriptionStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts
*/
public function testTriggeredClose(): void
{
@@ -56,7 +56,7 @@ class DescriptionStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts
*/
public function testTriggeredDefault(): void
{
@@ -68,7 +68,7 @@ class DescriptionStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts
*/
public function testTriggeredLongSearch(): void
{
@@ -80,7 +80,7 @@ class DescriptionStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts
*/
public function testTriggeredNot(): void
{
@@ -92,7 +92,7 @@ class DescriptionStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -102,7 +102,7 @@ class DescriptionStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -112,7 +112,7 @@ class DescriptionStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\DescriptionStarts
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class FromAccountContainsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains
*/
public function testTriggered(): void
{
@@ -52,7 +52,7 @@ class FromAccountContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains
*/
public function testTriggeredNot(): void
{
@@ -70,7 +70,7 @@ class FromAccountContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -81,7 +81,7 @@ class FromAccountContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -92,7 +92,7 @@ class FromAccountContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountContains
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class FromAccountEndsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds
*/
public function testTriggered(): void
{
@@ -51,7 +51,7 @@ class FromAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds
*/
public function testTriggeredLonger(): void
{
@@ -69,7 +69,7 @@ class FromAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds
*/
public function testTriggeredNot(): void
{
@@ -87,7 +87,7 @@ class FromAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -98,7 +98,7 @@ class FromAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -109,7 +109,7 @@ class FromAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountEnds
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class FromAccountIsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs
*/
public function testTriggered(): void
{
@@ -53,7 +53,7 @@ class FromAccountIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs
*/
public function testTriggeredNot(): void
{
@@ -71,7 +71,7 @@ class FromAccountIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -82,7 +82,7 @@ class FromAccountIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -93,7 +93,7 @@ class FromAccountIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountIs
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -44,7 +44,7 @@ class FromAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts
*/
public function testTriggered(): void
{
@@ -62,7 +62,7 @@ class FromAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts
*/
public function testTriggeredLonger(): void
{
@@ -80,7 +80,7 @@ class FromAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts
*/
public function testTriggeredNot(): void
{
@@ -98,7 +98,7 @@ class FromAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -109,7 +109,7 @@ class FromAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -120,7 +120,7 @@ class FromAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\FromAccountStarts
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class HasAnyBudgetTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget
*/
public function testTriggered(): void
{
@@ -58,7 +58,7 @@ class HasAnyBudgetTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget
*/
public function testTriggeredNot(): void
{
@@ -85,7 +85,7 @@ class HasAnyBudgetTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget
*/
public function testTriggeredTransactions(): void
{
@@ -126,7 +126,7 @@ class HasAnyBudgetTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget
*/
public function testWillMatchEverything(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class HasAnyCategoryTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyCategory::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyCategory
*/
public function testTriggered(): void
{
@@ -49,7 +49,7 @@ class HasAnyCategoryTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyCategory::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyCategory
*/
public function testTriggeredNot(): void
{
@@ -69,7 +69,7 @@ class HasAnyCategoryTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyCategory::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyCategory
*/
public function testTriggeredTransactions(): void
{
@@ -98,7 +98,7 @@ class HasAnyCategoryTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyCategory::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyCategory
*/
public function testWillMatchEverything(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class HasAnyTagTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyTag::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyTag
*/
public function testTriggered(): void
{
@@ -48,7 +48,7 @@ class HasAnyTagTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyTag::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyTag
*/
public function testTriggeredNot(): void
{
@@ -61,7 +61,7 @@ class HasAnyTagTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyTag::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyTag
*/
public function testWillMatchEverything(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class HasAttachmentTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAttachment::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAttachment
*/
public function testTriggered(): void
{
@@ -51,7 +51,7 @@ class HasAttachmentTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAttachment::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasAttachment
*/
public function testTriggeredFalse(): void
{
@@ -69,7 +69,7 @@ class HasAttachmentTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAttachment::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\HasAttachment
*/
public function testWillMatchEverything(): void
{
@@ -79,7 +79,7 @@ class HasAttachmentTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasAttachment::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\HasAttachment
*/
public function testWillMatchEverythingTrue(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class HasNoBudgetTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoBudget::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasNoBudget
*/
public function testTriggeredBudget(): void
{
@@ -49,7 +49,7 @@ class HasNoBudgetTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoBudget::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasNoBudget
*/
public function testTriggeredNoBudget(): void
{
@@ -68,7 +68,7 @@ class HasNoBudgetTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoBudget::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasNoBudget
*/
public function testTriggeredTransaction(): void
{
@@ -95,7 +95,7 @@ class HasNoBudgetTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoBudget::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\HasNoBudget
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class HasNoCategoryTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoCategory::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasNoCategory
*/
public function testTriggeredCategory(): void
{
@@ -49,7 +49,7 @@ class HasNoCategoryTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoCategory::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasNoCategory
*/
public function testTriggeredNoCategory(): void
{
@@ -71,7 +71,7 @@ class HasNoCategoryTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoCategory::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasNoCategory
*/
public function testTriggeredTransaction(): void
{
@@ -94,7 +94,7 @@ class HasNoCategoryTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoCategory::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\HasNoCategory
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class HasNoTagTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoTag::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasNoTag
*/
public function testTriggeredNoTag(): void
{
@@ -46,7 +46,7 @@ class HasNoTagTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoTag::triggered
* @covers \FireflyIII\TransactionRules\Triggers\HasNoTag
*/
public function testTriggeredTag(): void
{
@@ -62,7 +62,7 @@ class HasNoTagTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\HasNoTag::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\HasNoTag
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class NotesAnyTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAny::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesAny
*/
public function testTriggered(): void
{
@@ -49,7 +49,7 @@ class NotesAnyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAny::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesAny
*/
public function testTriggeredEmpty(): void
{
@@ -65,7 +65,7 @@ class NotesAnyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAny::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesAny
*/
public function testTriggeredNone(): void
{
@@ -77,7 +77,7 @@ class NotesAnyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAny::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesAny
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class NotesAreTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre
*/
public function testTriggered(): void
{
@@ -49,7 +49,7 @@ class NotesAreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre
*/
public function testTriggeredDifferent(): void
{
@@ -65,7 +65,7 @@ class NotesAreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre
*/
public function testTriggeredEmpty(): void
{
@@ -81,7 +81,7 @@ class NotesAreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre
*/
public function testTriggeredNone(): void
{
@@ -93,7 +93,7 @@ class NotesAreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -103,7 +103,7 @@ class NotesAreTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesAre
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class NotesContainTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain
*/
public function testTriggered(): void
{
@@ -49,7 +49,7 @@ class NotesContainTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain
*/
public function testTriggeredDifferent(): void
{
@@ -65,7 +65,7 @@ class NotesContainTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain
*/
public function testTriggeredEmpty(): void
{
@@ -81,7 +81,7 @@ class NotesContainTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain
*/
public function testTriggeredNone(): void
{
@@ -93,7 +93,7 @@ class NotesContainTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain
*/
public function testTriggeredPartial(): void
{
@@ -109,7 +109,7 @@ class NotesContainTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -119,7 +119,7 @@ class NotesContainTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -129,7 +129,7 @@ class NotesContainTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesContain
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class NotesEmptyTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEmpty::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesEmpty
*/
public function testTriggered(): void
{
@@ -45,7 +45,7 @@ class NotesEmptyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEmpty::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesEmpty
*/
public function testTriggeredEmpty(): void
{
@@ -61,7 +61,7 @@ class NotesEmptyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEmpty::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesEmpty
*/
public function testTriggeredPartial(): void
{
@@ -77,7 +77,7 @@ class NotesEmptyTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEmpty::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesEmpty
*/
public function testWillMatchEverythingNotNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class NotesEndTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd
*/
public function testTriggered(): void
{
@@ -49,7 +49,7 @@ class NotesEndTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd
*/
public function testTriggeredLonger(): void
{
@@ -65,7 +65,7 @@ class NotesEndTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd
*/
public function testTriggeredNoMatch(): void
{
@@ -81,7 +81,7 @@ class NotesEndTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -91,7 +91,7 @@ class NotesEndTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -101,7 +101,7 @@ class NotesEndTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesEnd
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class NotesStartTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart
*/
public function testTriggered(): void
{
@@ -49,7 +49,7 @@ class NotesStartTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart
*/
public function testTriggeredLonger(): void
{
@@ -65,7 +65,7 @@ class NotesStartTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart::triggered
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart
*/
public function testTriggeredNoMatch(): void
{
@@ -81,7 +81,7 @@ class NotesStartTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -91,7 +91,7 @@ class NotesStartTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -101,7 +101,7 @@ class NotesStartTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\NotesStart
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -33,7 +33,7 @@ use Tests\TestCase;
class TagIsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\TagIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\TagIs
*/
public function testNotTriggered(): void
{
@@ -47,7 +47,7 @@ class TagIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\TagIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\TagIs
*/
public function testTriggered(): void
{
@@ -70,7 +70,7 @@ class TagIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\TagIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\TagIs
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -80,7 +80,7 @@ class TagIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\TagIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\TagIs
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -90,7 +90,7 @@ class TagIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\TagIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\TagIs
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class ToAccountContainsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains
*/
public function testTriggered(): void
{
@@ -53,7 +53,7 @@ class ToAccountContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains
*/
public function testTriggeredNot(): void
{
@@ -72,7 +72,7 @@ class ToAccountContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -83,7 +83,7 @@ class ToAccountContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -94,7 +94,7 @@ class ToAccountContainsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountContains
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class ToAccountEndsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds
*/
public function testTriggered(): void
{
@@ -52,7 +52,7 @@ class ToAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds
*/
public function testTriggeredLonger(): void
{
@@ -70,7 +70,7 @@ class ToAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds
*/
public function testTriggeredNot(): void
{
@@ -88,7 +88,7 @@ class ToAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -99,7 +99,7 @@ class ToAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -110,7 +110,7 @@ class ToAccountEndsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountEnds
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class ToAccountIsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs
*/
public function testTriggered(): void
{
@@ -53,7 +53,7 @@ class ToAccountIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs
*/
public function testTriggeredNot(): void
{
@@ -71,7 +71,7 @@ class ToAccountIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -82,7 +82,7 @@ class ToAccountIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -93,7 +93,7 @@ class ToAccountIsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountIs
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -34,7 +34,7 @@ use Tests\TestCase;
class ToAccountStartsTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts
*/
public function testTriggered(): void
{
@@ -53,7 +53,7 @@ class ToAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts
*/
public function testTriggeredLonger(): void
{
@@ -71,7 +71,7 @@ class ToAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts::triggered
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts
*/
public function testTriggeredNot(): void
{
@@ -89,7 +89,7 @@ class ToAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts
*/
public function testWillMatchEverythingEmpty(): void
{
@@ -100,7 +100,7 @@ class ToAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -111,7 +111,7 @@ class ToAccountStartsTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\ToAccountStarts
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -32,7 +32,7 @@ use Tests\TestCase;
class TransactionTypeTest extends TestCase
{
/**
* @covers \FireflyIII\TransactionRules\Triggers\TransactionType::triggered
* @covers \FireflyIII\TransactionRules\Triggers\TransactionType
*/
public function testTriggered(): void
{
@@ -44,7 +44,7 @@ class TransactionTypeTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\TransactionType::triggered
* @covers \FireflyIII\TransactionRules\Triggers\TransactionType
*/
public function testTriggeredFalse(): void
{
@@ -55,7 +55,7 @@ class TransactionTypeTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\TransactionType::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\TransactionType
*/
public function testWillMatchEverythingNotNull(): void
{
@@ -65,7 +65,7 @@ class TransactionTypeTest extends TestCase
}
/**
* @covers \FireflyIII\TransactionRules\Triggers\TransactionType::willMatchEverything
* @covers \FireflyIII\TransactionRules\Triggers\TransactionType
*/
public function testWillMatchEverythingNull(): void
{

View File

@@ -43,7 +43,7 @@ class AccountTransformerTest extends TestCase
/**
* Basic account display.
*
* @covers \FireflyIII\Transformers\AccountTransformer::transform
* @covers \FireflyIII\Transformers\AccountTransformer
*/
public function testBasic(): void
{
@@ -81,7 +81,7 @@ class AccountTransformerTest extends TestCase
/**
* Basic account display with custom date parameter.
*
* @covers \FireflyIII\Transformers\AccountTransformer::transform
* @covers \FireflyIII\Transformers\AccountTransformer
*/
public function testBasicDate(): void
{
@@ -119,7 +119,7 @@ class AccountTransformerTest extends TestCase
/**
* Assert account has credit card meta data, should NOT be ignored in output.
*
* @covers \FireflyIII\Transformers\AccountTransformer::transform
* @covers \FireflyIII\Transformers\AccountTransformer
*/
public function testCCDataAsset(): void
{
@@ -210,7 +210,7 @@ class AccountTransformerTest extends TestCase
/**
* Expense account has credit card meta data, should be ignored in output.
*
* @covers \FireflyIII\Transformers\AccountTransformer::transform
* @covers \FireflyIII\Transformers\AccountTransformer
*/
public function testIgnoreCCExpense(): void
{
@@ -295,7 +295,7 @@ class AccountTransformerTest extends TestCase
/**
* Basic account display.
*
* @covers \FireflyIII\Transformers\AccountTransformer::transform
* @covers \FireflyIII\Transformers\AccountTransformer
*/
public function testOpeningBalance(): void
{
@@ -353,7 +353,7 @@ class AccountTransformerTest extends TestCase
/**
* Account has currency preference, should be reflected in output.
*
* @covers \FireflyIII\Transformers\AccountTransformer::transform
* @covers \FireflyIII\Transformers\AccountTransformer
*/
public function testWithCurrency(): void
{
@@ -399,7 +399,7 @@ class AccountTransformerTest extends TestCase
/**
* Account has notes, should be reflected in output.
*
* @covers \FireflyIII\Transformers\AccountTransformer::transform
* @covers \FireflyIII\Transformers\AccountTransformer
*/
public function testWithNotes(): void
{

View File

@@ -37,7 +37,7 @@ class AttachmentTransformerTest extends TestCase
/**
* Test basic transformer
*
* @covers \FireflyIII\Transformers\AttachmentTransformer::transform
* @covers \FireflyIII\Transformers\AttachmentTransformer
*/
public function testBasic(): void
{

View File

@@ -39,9 +39,7 @@ class BillTransformerTest extends TestCase
/**
* Basic coverage
*
* @covers \FireflyIII\Transformers\BillTransformer::transform
* @covers \FireflyIII\Transformers\BillTransformer::paidData
* @covers \FireflyIII\Transformers\BillTransformer::payDates
* @covers \FireflyIII\Transformers\BillTransformer
*/
public function testBasic(): void
{
@@ -70,11 +68,7 @@ class BillTransformerTest extends TestCase
/**
* Coverage for dates.
*
* @covers \FireflyIII\Transformers\BillTransformer::transform
* @covers \FireflyIII\Transformers\BillTransformer::paidData
* @covers \FireflyIII\Transformers\BillTransformer::payDates
* @covers \FireflyIII\Transformers\BillTransformer::lastPaidDate
* @covers \FireflyIII\Transformers\BillTransformer::nextDateMatch
* @covers \FireflyIII\Transformers\BillTransformer
*/
public function testWithDates(): void
{

View File

@@ -37,7 +37,7 @@ class BudgetTransformerTest extends TestCase
/**
* Basic coverage
*
* @covers \FireflyIII\Transformers\BudgetTransformer::transform
* @covers \FireflyIII\Transformers\BudgetTransformer
*/
public function testBasic(): void
{

View File

@@ -37,7 +37,7 @@ class CategoryTransformerTest extends TestCase
/**
* Basic coverage
*
* @covers \FireflyIII\Transformers\CategoryTransformer::transform
* @covers \FireflyIII\Transformers\CategoryTransformer
*/
public function testBasic(): void
{

View File

@@ -36,7 +36,7 @@ class JournalMetaTransformerTest extends TestCase
/**
* Basic coverage
*
* @covers \FireflyIII\Transformers\JournalMetaTransformer::transform
* @covers \FireflyIII\Transformers\JournalMetaTransformer
*/
public function testBasic(): void
{

View File

@@ -41,7 +41,7 @@ class PiggyBankEventTransformerTest extends TestCase
/**
* Basic test with no meta data.
*
* @covers \FireflyIII\Transformers\PiggyBankEventTransformer::transform
* @covers \FireflyIII\Transformers\PiggyBankEventTransformer
*/
public function testBasic(): void
{
@@ -85,7 +85,7 @@ class PiggyBankEventTransformerTest extends TestCase
/**
* Basic test with currency meta data.
*
* @covers \FireflyIII\Transformers\PiggyBankEventTransformer::transform
* @covers \FireflyIII\Transformers\PiggyBankEventTransformer
*/
public function testBasicCurrency(): void
{

View File

@@ -42,7 +42,7 @@ class PiggyBankTransformerTest extends TestCase
/**
* Test basic transformer.
*
* @covers \FireflyIII\Transformers\PiggyBankTransformer::transform()
* @covers \FireflyIII\Transformers\PiggyBankTransformer
*/
public function testBasic(): void
{
@@ -87,7 +87,7 @@ class PiggyBankTransformerTest extends TestCase
/**
* Test basic transformer with currency preference
*
* @covers \FireflyIII\Transformers\PiggyBankTransformer::transform()
* @covers \FireflyIII\Transformers\PiggyBankTransformer()
*/
public function testBasicWithCurrency(): void
{
@@ -146,7 +146,7 @@ class PiggyBankTransformerTest extends TestCase
/**
* Test basic transformer with currency preference and a note
*
* @covers \FireflyIII\Transformers\PiggyBankTransformer::transform()
* @covers \FireflyIII\Transformers\PiggyBankTransformer
*/
public function testBasicWithCurrencyAndNote(): void
{

View File

@@ -37,7 +37,7 @@ class TagTransformerTest extends TestCase
/**
* Test basic tag transformer
*
* @covers \FireflyIII\Transformers\TagTransformer::transform
* @covers \FireflyIII\Transformers\TagTransformer
*/
public function testBasic(): void
{

View File

@@ -48,7 +48,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (withdrawal)
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
*/
public function testBasic(): void
{
@@ -135,7 +135,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (withdrawal)
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testDeposit(): void
@@ -223,7 +223,7 @@ class TransactionTransformerTest extends TestCase
/**
* Deposit cannot have a budget
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testDepositBudget(): void
@@ -320,7 +320,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (withdrawal) with a foreign amount.
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testForeignAmount(): void
@@ -416,7 +416,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (withdrawal) with a budget
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testJournalBudget(): void
@@ -518,7 +518,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (withdrawal) with a category
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testJournalCategory(): void
@@ -620,7 +620,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (opening balance)
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testOpeningBalanceNeg(): void
@@ -709,7 +709,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (opening balance)
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testOpeningBalancePos(): void
@@ -798,7 +798,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (reconciliation)
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testReconciliationNeg(): void
@@ -887,7 +887,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (reconciliation)
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testReconciliationPos(): void
@@ -976,7 +976,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (withdrawal) with budget on the transactions.
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testTransactionBudget(): void
@@ -1080,7 +1080,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (withdrawal) with a category on the transactions
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testTransactionCategory(): void
@@ -1183,7 +1183,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (withdrawal) with a description for transactions.
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testTransactionDescription(): void
@@ -1271,7 +1271,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (transfer)
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testTransferOne(): void
@@ -1359,7 +1359,7 @@ class TransactionTransformerTest extends TestCase
/**
* Basic journal (transfer)
*
* @covers \FireflyIII\Transformers\TransactionTransformer::transform
* @covers \FireflyIII\Transformers\TransactionTransformer
* throws \FireflyIII\Exceptions\FireflyException
*/
public function testTransferTwo(): void

View File

@@ -37,7 +37,7 @@ class UserTransformerTest extends TestCase
/**
* Test basic transformer.
*
* @covers \FireflyIII\Transformers\UserTransformer::transform
* @covers \FireflyIII\Transformers\UserTransformer
*/
public function testBasic(): void
{
@@ -52,7 +52,7 @@ class UserTransformerTest extends TestCase
/**
* Test basic transformer.
*
* @covers \FireflyIII\Transformers\UserTransformer::transform
* @covers \FireflyIII\Transformers\UserTransformer
*/
public function testEmptyUser(): void
{