Remove method pointers from tests.

This commit is contained in:
James Cole 2018-08-09 20:17:15 +02:00
parent 5908b4b000
commit eefa84a77b
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
124 changed files with 636 additions and 777 deletions

View File

@ -63,7 +63,6 @@ class CurrencyControllerTest extends TestCase
// mock calls:
$repository->shouldReceive('setUser')->once();
//$userRepos->shouldReceive('setUser')->once();
$userRepos->shouldReceive('hasRole')->once()->withArgs([Mockery::any(), 'owner'])->andReturn(true);
$repository->shouldReceive('canDeleteCurrency')->once()->andReturn(true);

View File

@ -316,7 +316,6 @@ class JournalLinkControllerTest extends TestCase
$collector->shouldReceive('getJournals')->andReturn(new Collection([$transaction]));
$journalRepos->shouldReceive('findNull')->andReturn(null);
//$repository->shouldReceive('updateLink')->once()->andReturn($journalLink);
// data to submit
$data = [

View File

@ -42,8 +42,8 @@ class ConfigurationControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController::index
* @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController::__construct
* @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController
* @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController
*/
public function testIndex(): void
{
@ -66,7 +66,7 @@ class ConfigurationControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController::postIndex
* @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController
*/
public function testPostIndex(): void
{

View File

@ -94,7 +94,6 @@ class UserControllerTest extends TestCase
public function testIndex(): void
{
$repository = $this->mock(UserRepositoryInterface::class);
//$repository->shouldReceive('hasRole')->withArgs([Mockery::any(), 'demo'])->once()->andReturn(false);
$repository->shouldReceive('hasRole')->withArgs([Mockery::any(), 'owner'])->times(3)->andReturn(true);
$user = $this->user();
$repository->shouldReceive('all')->andReturn(new Collection([$user]));

View File

@ -49,7 +49,7 @@ class AttachmentControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\AttachmentController::delete
* @covers \FireflyIII\Http\Controllers\AttachmentController
*/
public function testDelete(): void
{
@ -65,7 +65,7 @@ class AttachmentControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\AttachmentController::destroy
* @covers \FireflyIII\Http\Controllers\AttachmentController
*/
public function testDestroy(): void
{
@ -83,7 +83,7 @@ class AttachmentControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\AttachmentController::download
* @covers \FireflyIII\Http\Controllers\AttachmentController
*/
public function testDownload(): void
{
@ -102,7 +102,7 @@ class AttachmentControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\AttachmentController::download
* @covers \FireflyIII\Http\Controllers\AttachmentController
* @expectedExceptionMessage Could not find the indicated attachment
*/
public function testDownloadFail(): void
@ -119,7 +119,7 @@ class AttachmentControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\AttachmentController::edit
* @covers \FireflyIII\Http\Controllers\AttachmentController
*/
public function testEdit(): void
{
@ -152,7 +152,7 @@ class AttachmentControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\AttachmentController::update
* @covers \FireflyIII\Http\Controllers\AttachmentController
*/
public function testUpdate(): void
{
@ -176,8 +176,8 @@ class AttachmentControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\AttachmentController::view
* @covers \FireflyIII\Http\Controllers\AttachmentController::__construct
* @covers \FireflyIII\Http\Controllers\AttachmentController
* @covers \FireflyIII\Http\Controllers\AttachmentController
*/
public function testView(): void
{
@ -193,8 +193,8 @@ class AttachmentControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\AttachmentController::view
* @covers \FireflyIII\Http\Controllers\AttachmentController::__construct
* @covers \FireflyIII\Http\Controllers\AttachmentController
* @covers \FireflyIII\Http\Controllers\AttachmentController
*/
public function testViewFail(): void
{

View File

@ -59,7 +59,7 @@ class BillControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\BillController::create
* @covers \FireflyIII\Http\Controllers\BillController
*/
public function testCreate(): void
{
@ -77,7 +77,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::delete
* @covers \FireflyIII\Http\Controllers\BillController
*/
public function testDelete(): void
{
@ -95,7 +95,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::destroy
* @covers \FireflyIII\Http\Controllers\BillController
*/
public function testDestroy(): void
{
@ -115,7 +115,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::edit
* @covers \FireflyIII\Http\Controllers\BillController
*/
public function testEdit(): void
{
@ -133,8 +133,8 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::index
* @covers \FireflyIII\Http\Controllers\BillController::__construct
* @covers \FireflyIII\Http\Controllers\BillController
* @covers \FireflyIII\Http\Controllers\BillController
*/
public function testIndex(): void
{
@ -160,7 +160,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::rescan
* @covers \FireflyIII\Http\Controllers\BillController
*/
public function testRescan(): void
{
@ -190,7 +190,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::rescan
* @covers \FireflyIII\Http\Controllers\BillController
*/
public function testRescanInactive(): void
{
@ -208,7 +208,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::show
* @covers \FireflyIII\Http\Controllers\BillController
*/
public function testShow(): void
{
@ -278,7 +278,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::store
* @covers \FireflyIII\Http\Controllers\BillController
* @covers \FireflyIII\Http\Requests\BillFormRequest
* @covers \FireflyIII\Http\Requests\Request
*/
@ -314,7 +314,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::store
* @covers \FireflyIII\Http\Controllers\BillController
* @covers \FireflyIII\Http\Requests\BillFormRequest
* @covers \FireflyIII\Http\Requests\Request
*/
@ -346,7 +346,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::store
* @covers \FireflyIII\Http\Controllers\BillController
* @covers \FireflyIII\Http\Requests\BillFormRequest
* @covers \FireflyIII\Http\Requests\Request
*/
@ -381,7 +381,7 @@ class BillControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\BillController::update
* @covers \FireflyIII\Http\Controllers\BillController
* @covers \FireflyIII\Http\Requests\BillFormRequest
* @covers \FireflyIII\Http\Requests\Request
*/

View File

@ -57,7 +57,6 @@ class AccountControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Chart\AccountController
* @covers \FireflyIII\Generator\Chart\Basic\GeneratorInterface
* @dataProvider dateRangeProvider
*
* @param string $range
@ -195,7 +194,6 @@ class AccountControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Chart\AccountController
* @covers \FireflyIII\Generator\Chart\Basic\GeneratorInterface
* @dataProvider dateRangeProvider
*
* @param string $range

View File

@ -52,7 +52,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::create
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testCannotCreate(): void
{
@ -71,7 +71,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::delete
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testCannotDelete(): void
{
@ -91,7 +91,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::destroy
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testCannotDestroy(): void
{
@ -112,7 +112,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::create
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testCreate(): void
{
@ -132,7 +132,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::defaultCurrency
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testDefaultCurrency(): void
{
@ -150,7 +150,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::delete
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testDelete(): void
{
@ -171,7 +171,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::destroy
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testDestroy(): void
{
@ -193,7 +193,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::edit
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testEdit(): void
{
@ -213,8 +213,8 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::index
* @covers \FireflyIII\Http\Controllers\CurrencyController::__construct
* @covers \FireflyIII\Http\Controllers\CurrencyController
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testIndex(): void
{
@ -238,8 +238,8 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::index
* @covers \FireflyIII\Http\Controllers\CurrencyController::__construct
* @covers \FireflyIII\Http\Controllers\CurrencyController
* @covers \FireflyIII\Http\Controllers\CurrencyController
*/
public function testIndexNoRights(): void
{
@ -262,7 +262,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::store
* @covers \FireflyIII\Http\Controllers\CurrencyController
* @covers \FireflyIII\Http\Requests\CurrencyFormRequest
*/
public function testStore(): void
@ -290,7 +290,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::store
* @covers \FireflyIII\Http\Controllers\CurrencyController
* @covers \FireflyIII\Http\Requests\CurrencyFormRequest
*/
public function testStoreNoRights(): void
@ -318,7 +318,7 @@ class CurrencyControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\CurrencyController::update
* @covers \FireflyIII\Http\Controllers\CurrencyController
* @covers \FireflyIII\Http\Requests\CurrencyFormRequest
*/
public function testUpdate(): void

View File

@ -46,7 +46,7 @@ class DebugControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\DebugController::displayError
* @covers \FireflyIII\Http\Controllers\DebugController
*/
public function testDisplayError(): void
{
@ -60,7 +60,7 @@ class DebugControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\DebugController::flush
* @covers \FireflyIII\Http\Controllers\DebugController
*/
public function testFlush(): void
{
@ -74,10 +74,7 @@ class DebugControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\DebugController::index
* @covers \FireflyIII\Http\Controllers\DebugController::__construct
* @covers \FireflyIII\Http\Controllers\DebugController::errorReporting
* @covers \FireflyIII\Http\Controllers\DebugController::collectPackages
* @covers \FireflyIII\Http\Controllers\DebugController
*/
public function testIndex(): void
{
@ -87,7 +84,7 @@ class DebugControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\DebugController::routes()
* @covers \FireflyIII\Http\Controllers\DebugController
*/
public function testRoutes(): void
{
@ -97,7 +94,7 @@ class DebugControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\DebugController::testFlash
* @covers \FireflyIII\Http\Controllers\DebugController
*/
public function testTestFlash(): void
{

View File

@ -53,7 +53,7 @@ class ExportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ExportController::download
* @covers \FireflyIII\Http\Controllers\ExportController
*/
public function testDownload(): void
{
@ -73,7 +73,7 @@ class ExportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ExportController::download
* @covers \FireflyIII\Http\Controllers\ExportController
* @expectedExceptionMessage Against all expectations
*/
public function testDownloadFailed(): void
@ -91,7 +91,7 @@ class ExportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ExportController::getStatus
* @covers \FireflyIII\Http\Controllers\ExportController
*/
public function testGetStatus(): void
{
@ -105,8 +105,8 @@ class ExportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ExportController::index
* @covers \FireflyIII\Http\Controllers\ExportController::__construct
* @covers \FireflyIII\Http\Controllers\ExportController
* @covers \FireflyIII\Http\Controllers\ExportController
*/
public function testIndex(): void
{
@ -129,7 +129,7 @@ class ExportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ExportController::postIndex
* @covers \FireflyIII\Http\Controllers\ExportController
* @covers \FireflyIII\Http\Requests\ExportFormRequest
*/
public function testPostIndex(): void

View File

@ -46,9 +46,9 @@ class HelpControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\HelpController::show
* @covers \FireflyIII\Http\Controllers\HelpController::getHelpText
* @covers \FireflyIII\Http\Controllers\HelpController::__construct
* @covers \FireflyIII\Http\Controllers\HelpController
* @covers \FireflyIII\Http\Controllers\HelpController
* @covers \FireflyIII\Http\Controllers\HelpController
*/
public function testShow(): void
{
@ -65,8 +65,8 @@ class HelpControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\HelpController::show
* @covers \FireflyIII\Http\Controllers\HelpController::getHelpText
* @covers \FireflyIII\Http\Controllers\HelpController
* @covers \FireflyIII\Http\Controllers\HelpController
*/
public function testShowBackupFromCache(): void
{
@ -94,8 +94,8 @@ class HelpControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\HelpController::show
* @covers \FireflyIII\Http\Controllers\HelpController::getHelpText
* @covers \FireflyIII\Http\Controllers\HelpController
* @covers \FireflyIII\Http\Controllers\HelpController
*/
public function testShowBackupFromGithub(): void
{
@ -123,8 +123,8 @@ class HelpControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\HelpController::show
* @covers \FireflyIII\Http\Controllers\HelpController::getHelpText
* @covers \FireflyIII\Http\Controllers\HelpController
* @covers \FireflyIII\Http\Controllers\HelpController
*/
public function testShowCached(): void
{
@ -140,8 +140,8 @@ class HelpControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\HelpController::show
* @covers \FireflyIII\Http\Controllers\HelpController::getHelpText
* @covers \FireflyIII\Http\Controllers\HelpController
* @covers \FireflyIII\Http\Controllers\HelpController
*/
public function testShowNoRoute(): void
{

View File

@ -56,8 +56,7 @@ class HomeControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\HomeController::dateRange
* @covers \FireflyIII\Http\Controllers\HomeController::__construct
* @covers \FireflyIII\Http\Controllers\HomeController
*/
public function testDateRange(): void
{
@ -78,8 +77,7 @@ class HomeControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\HomeController::dateRange
* @covers \FireflyIII\Http\Controllers\HomeController::__construct
* @covers \FireflyIII\Http\Controllers\HomeController
*/
public function testDateRangeCustom(): void
{
@ -101,9 +99,9 @@ class HomeControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\HomeController::index
* @covers \FireflyIII\Http\Controllers\HomeController::__construct
* @covers \FireflyIII\Http\Controllers\Controller::__construct
* @covers \FireflyIII\Http\Controllers\HomeController
* @covers \FireflyIII\Http\Controllers\HomeController
* @covers \FireflyIII\Http\Controllers\Controller
* @dataProvider dateRangeProvider
*
* @param $range
@ -138,9 +136,9 @@ class HomeControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\HomeController::index
* @covers \FireflyIII\Http\Controllers\HomeController::__construct
* @covers \FireflyIII\Http\Controllers\Controller::__construct
* @covers \FireflyIII\Http\Controllers\HomeController
* @covers \FireflyIII\Http\Controllers\HomeController
* @covers \FireflyIII\Http\Controllers\Controller
* @dataProvider dateRangeProvider
*
* @param $range

View File

@ -53,7 +53,7 @@ class JavascriptControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\JavascriptController::accounts
* @covers \FireflyIII\Http\Controllers\JavascriptController
*/
public function testAccounts(): void
{
@ -72,7 +72,7 @@ class JavascriptControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\JavascriptController::currencies
* @covers \FireflyIII\Http\Controllers\JavascriptController
*/
public function testCurrencies(): void
{
@ -87,8 +87,8 @@ class JavascriptControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\JavascriptController::variables
* @covers \FireflyIII\Http\Controllers\JavascriptController::getDateRangeConfig
* @covers \FireflyIII\Http\Controllers\JavascriptController
* @covers \FireflyIII\Http\Controllers\JavascriptController
*
* @param string $range
*
@ -108,8 +108,7 @@ class JavascriptControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\JavascriptController::variables
* @covers \FireflyIII\Http\Controllers\JavascriptController::getDateRangeConfig
* @covers \FireflyIII\Http\Controllers\JavascriptController
*
* @param string $range
*
@ -131,8 +130,7 @@ class JavascriptControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\JavascriptController::variables
* @covers \FireflyIII\Http\Controllers\JavascriptController::getDateRangeConfig
* @covers \FireflyIII\Http\Controllers\JavascriptController
*
* @param string $range
*

View File

@ -59,7 +59,7 @@ class AutoCompleteControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController::allAccounts
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController
*/
public function testAllAccounts(): void
{
@ -181,7 +181,7 @@ class AutoCompleteControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController::journalsWithId
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController
*/
public function testJournalsWithId(): void
{
@ -200,7 +200,7 @@ class AutoCompleteControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController::revenueAccounts
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController
*/
public function testRevenueAccounts(): void
{
@ -222,7 +222,7 @@ class AutoCompleteControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController::tags
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController
*/
public function testTags(): void
{
@ -240,7 +240,7 @@ class AutoCompleteControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController::transactionJournals
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController
*/
public function testTransactionJournals(): void
{
@ -260,7 +260,7 @@ class AutoCompleteControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController::transactionTypes
* @covers \FireflyIII\Http\Controllers\Json\AutoCompleteController
*/
public function testTransactionTypes(): void
{

View File

@ -92,7 +92,7 @@ class BoxControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\BoxController::balance
* @covers \FireflyIII\Http\Controllers\Json\BoxController
*/
public function testBalance(): void
{
@ -113,7 +113,7 @@ class BoxControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\BoxController::balance
* @covers \FireflyIII\Http\Controllers\Json\BoxController
*/
public function testBalanceTransactions(): void
{
@ -138,7 +138,7 @@ class BoxControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\BoxController::bills
* @covers \FireflyIII\Http\Controllers\Json\BoxController
*/
public function testBills(): void
{
@ -152,7 +152,7 @@ class BoxControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\BoxController::netWorth()
* @covers \FireflyIII\Http\Controllers\Json\BoxController
*/
public function testNetWorth(): void
{
@ -169,7 +169,7 @@ class BoxControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\BoxController::netWorth()
* @covers \FireflyIII\Http\Controllers\Json\BoxController
*/
public function testNetWorthFuture(): void
{
@ -191,7 +191,7 @@ class BoxControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\BoxController::netWorth()
* @covers \FireflyIII\Http\Controllers\Json\BoxController
*/
public function testNetWorthNoCurrency(): void
{
@ -208,7 +208,7 @@ class BoxControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\BoxController::netWorth()
* @covers \FireflyIII\Http\Controllers\Json\BoxController
*/
public function testNetWorthVirtual(): void
{

View File

@ -46,7 +46,7 @@ class ExchangeControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\ExchangeController::getRate
* @covers \FireflyIII\Http\Controllers\Json\ExchangeController
*/
public function testGetRate(): void
{
@ -61,7 +61,7 @@ class ExchangeControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\ExchangeController::getRate
* @covers \FireflyIII\Http\Controllers\Json\ExchangeController
*/
public function testGetRateAmount(): void
{

View File

@ -46,7 +46,7 @@ class FrontpageControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\FrontpageController::piggyBanks
* @covers \FireflyIII\Http\Controllers\Json\FrontpageController
*/
public function testPiggyBanks(): void
{

View File

@ -44,10 +44,7 @@ class IntroControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getIntroSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getBasicSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getSpecificSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::hasOutroStep
* @covers \FireflyIII\Http\Controllers\Json\IntroController
*/
public function testGetIntroSteps(): void
{
@ -57,10 +54,7 @@ class IntroControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getIntroSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getBasicSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getSpecificSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::hasOutroStep
* @covers \FireflyIII\Http\Controllers\Json\IntroController
*/
public function testGetIntroStepsAsset(): void
{
@ -70,10 +64,7 @@ class IntroControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getIntroSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getBasicSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::getSpecificSteps
* @covers \FireflyIII\Http\Controllers\Json\IntroController::hasOutroStep
* @covers \FireflyIII\Http\Controllers\Json\IntroController
*/
public function testGetIntroStepsOutro(): void
{
@ -83,7 +74,7 @@ class IntroControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\IntroController::postEnable
* @covers \FireflyIII\Http\Controllers\Json\IntroController
*/
public function testPostEnable(): void
{
@ -93,7 +84,7 @@ class IntroControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Json\IntroController::postFinished
* @covers \FireflyIII\Http\Controllers\Json\IntroController
*/
public function testPostFinished(): void
{

View File

@ -46,8 +46,7 @@ class JsonControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\JsonController::action
* @covers \FireflyIII\Http\Controllers\JsonController::__construct
* @covers \FireflyIII\Http\Controllers\JsonController
*/
public function testAction(): void
{
@ -61,7 +60,7 @@ class JsonControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\JsonController::trigger
* @covers \FireflyIII\Http\Controllers\JsonController
*/
public function testTrigger(): void
{

View File

@ -53,9 +53,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::__construct
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
* @expectedExceptionMessage Could not parse end date
*/
public function testBadEndDate(): void
@ -78,8 +76,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
* @expectedExceptionMessage Could not parse start date
*/
public function testBadStartDate(): void
@ -102,9 +99,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::balanceAmount
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
*/
public function testBalanceAmountDefaultNoBudget(): void
{
@ -138,9 +133,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::balanceAmount
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
*/
public function testBalanceAmountDefaultRole(): void
{
@ -174,9 +167,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::balanceAmount
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
* @expectedExceptionMessage Firefly cannot handle this type of info-button
*/
public function testBalanceAmountTagRole(): void
@ -210,9 +201,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::budgetSpentAmount()
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
*/
public function testBudgetSpentAmount(): void
{
@ -243,9 +232,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::categoryEntry()
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
*/
public function testCategoryEntry(): void
{
@ -276,9 +263,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::expenseEntry()
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
*/
public function testExpenseEntry(): void
{
@ -310,9 +295,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::incomeEntry()
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
*/
public function testIncomeEntry(): void
{
@ -344,8 +327,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::general
* @covers \FireflyIII\Http\Controllers\Popup\ReportController::parseAttributes
* @covers \FireflyIII\Http\Controllers\Popup\ReportController
* @expectedExceptionMessage Firefly cannot handle
*/
public function testWrongLocation(): void

View File

@ -51,8 +51,8 @@ class PreferencesControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\PreferencesController::index
* @covers \FireflyIII\Http\Controllers\PreferencesController::__construct
* @covers \FireflyIII\Http\Controllers\PreferencesController
* @covers \FireflyIII\Http\Controllers\PreferencesController
*/
public function testIndex(): void
{
@ -69,7 +69,7 @@ class PreferencesControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\PreferencesController::postIndex
* @covers \FireflyIII\Http\Controllers\PreferencesController
*/
public function testPostIndex(): void
{

View File

@ -53,7 +53,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::changeEmail()
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testChangeEmail(): void
{
@ -64,7 +64,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::changePassword
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testChangePassword(): void
{
@ -79,8 +79,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::code
* @covers \FireflyIII\Http\Controllers\ProfileController::getDomain
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testCode(): void
{
@ -97,7 +96,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::confirmEmailChange()
* @covers \FireflyIII\Http\Controllers\ProfileController
* @expectedExceptionMessage Invalid token
*/
public function testConfirmEmailChangeNoToken(): void
@ -109,7 +108,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::confirmEmailChange()
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testConfirmEmailWithToken(): void
{
@ -127,7 +126,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::deleteAccount
* @covers \FireflyIII\Http\Controllers\ProfileControllerAccount
*/
public function testDeleteAccount(): void
{
@ -142,7 +141,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::deleteCode
* @covers \FireflyIII\Http\Controllers\ProfileControllerCode
*/
public function testDeleteCode(): void
{
@ -267,7 +266,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postChangeEmail
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostChangeEmail(): void
{
@ -287,7 +286,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postChangeEmail
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostChangeEmailExisting(): void
{
@ -307,7 +306,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postChangeEmail
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostChangeEmailSame(): void
{
@ -324,8 +323,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postChangePassword
* @covers \FireflyIII\Http\Controllers\ProfileController::validatePassword
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostChangePassword(): void
{
@ -348,8 +346,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postChangePassword
* @covers \FireflyIII\Http\Controllers\ProfileController::validatePassword
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostChangePasswordNotCorrect(): void
{
@ -372,8 +369,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postChangePassword
* @covers \FireflyIII\Http\Controllers\ProfileController::validatePassword
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostChangePasswordSameNew(): void
{
@ -396,7 +392,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postCode
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostCode(): void
{
@ -423,7 +419,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postDeleteAccount
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostDeleteAccount(): void
{
@ -443,7 +439,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::postDeleteAccount
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testPostDeleteAccountWrong(): void
{
@ -463,7 +459,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::regenerate()
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testRegenerate(): void
{
@ -490,7 +486,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::undoEmailChange()
* @covers \FireflyIII\Http\Controllers\ProfileController
*/
public function testUndoEmailChange(): void
{
@ -519,7 +515,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::undoEmailChange()
* @covers \FireflyIII\Http\Controllers\ProfileController
* @expectedExceptionMessage Invalid token
*/
public function testUndoEmailChangeBadHash(): void
@ -544,7 +540,7 @@ class ProfileControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ProfileController::undoEmailChange()
* @covers \FireflyIII\Http\Controllers\ProfileController
* @expectedExceptionMessage Invalid token
*/
public function testUndoEmailChangeBadToken(): void

View File

@ -45,7 +45,7 @@ class AccountControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\AccountController::general
* @covers \FireflyIII\Http\Controllers\Report\AccountController
*/
public function testGeneral(): void
{

View File

@ -47,7 +47,7 @@ class BalanceControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Report\BalanceController::general
* @covers \FireflyIII\Http\Controllers\Report\BalanceController
*/
public function testGeneral(): void
{

View File

@ -48,7 +48,7 @@ class BudgetControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Report\BudgetController::general
* @covers \FireflyIII\Http\Controllers\Report\BudgetController
*/
public function testGeneral(): void
{
@ -62,8 +62,7 @@ class BudgetControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\BudgetController::period
* @covers \FireflyIII\Http\Controllers\Report\BudgetController::filterBudgetPeriodReport
* @covers \FireflyIII\Http\Controllers\Report\BudgetController
*/
public function testPeriod(): void
{

View File

@ -48,8 +48,7 @@ class CategoryControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Report\CategoryController::expenses
* @covers \FireflyIII\Http\Controllers\Report\CategoryController::filterReport
* @covers \FireflyIII\Http\Controllers\Report\CategoryController
*/
public function testExpenses(): void
{
@ -66,8 +65,7 @@ class CategoryControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\CategoryController::income
* @covers \FireflyIII\Http\Controllers\Report\CategoryController::filterReport
* @covers \FireflyIII\Http\Controllers\Report\CategoryController
*/
public function testIncome(): void
{
@ -84,7 +82,7 @@ class CategoryControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\CategoryController::operations
* @covers \FireflyIII\Http\Controllers\Report\CategoryController
*/
public function testOperations(): void
{

View File

@ -50,10 +50,7 @@ class ExpenseControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::__construct
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::budget
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::combineAccounts
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::spentByBudget
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController
*/
public function testBudget(): void
{
@ -90,7 +87,6 @@ class ExpenseControllerTest extends TestCase
$collector->shouldReceive('setOpposingAccounts')->andReturnSelf();
$collector->shouldReceive('withBudgetInformation')->andReturnSelf();
$collector->shouldReceive('getJournals')->andReturn($collection);
//$collector->shouldReceive('')->andReturnSelf();
$this->be($this->user());
@ -99,9 +95,7 @@ class ExpenseControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::category
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::spentByCategory
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::earnedByCategory
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController
*/
public function testCategory(): void
{
@ -156,9 +150,7 @@ class ExpenseControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::spent
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::spentInPeriod
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::earnedInPeriod
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController
*/
public function testSpent(): void
{
@ -194,7 +186,6 @@ class ExpenseControllerTest extends TestCase
$collector->shouldReceive('setAccounts')->andReturnSelf();
$collector->shouldReceive('setOpposingAccounts')->andReturnSelf();
$collector->shouldReceive('getJournals')->andReturn($collection);
//$collector->shouldReceive('')->andReturnSelf();
$this->be($this->user());
$response = $this->get(route('report-data.expense.spent', ['1', $expense->id, '20170101', '20170131']));
@ -202,7 +193,7 @@ class ExpenseControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::topExpense
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController
*/
public function testTopExpense(): void
{
@ -248,7 +239,7 @@ class ExpenseControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController::topIncome
* @covers \FireflyIII\Http\Controllers\Report\ExpenseController
*/
public function testTopIncome(): void
{

View File

@ -46,7 +46,7 @@ class OperationsControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Report\OperationsController::expenses
* @covers \FireflyIII\Http\Controllers\Report\OperationsController
*/
public function testExpenses(): void
{
@ -68,7 +68,7 @@ class OperationsControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\OperationsController::income
* @covers \FireflyIII\Http\Controllers\Report\OperationsController
*/
public function testIncome(): void
{
@ -81,7 +81,7 @@ class OperationsControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Report\OperationsController::operations
* @covers \FireflyIII\Http\Controllers\Report\OperationsController
*/
public function testOperations(): void
{

View File

@ -64,7 +64,7 @@ class ReportControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\ReportController::accountReport()
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testAccountReport(): void
{
@ -88,7 +88,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::auditReport
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testAuditReport(): void
{
@ -110,7 +110,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::budgetReport
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testBudgetReport(): void
{
@ -132,7 +132,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::categoryReport
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testCategoryReport(): void
{
@ -154,7 +154,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::defaultReport
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testDefaultReport(): void
{
@ -175,7 +175,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::defaultReport
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testDefaultReportBadDate(): void
{
@ -192,8 +192,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::index
* @covers \FireflyIII\Http\Controllers\ReportController::__construct
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testIndex(): void
{
@ -214,8 +213,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::options
* @covers \FireflyIII\Http\Controllers\ReportController::noReportOptions
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testOptions(): void
{
@ -230,8 +228,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::options
* @covers \FireflyIII\Http\Controllers\ReportController::accountReportOptions()
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testOptionsAccount(): void
{
@ -254,8 +251,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::options
* @covers \FireflyIII\Http\Controllers\ReportController::budgetReportOptions
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testOptionsBudget(): void
{
@ -274,8 +270,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::options
* @covers \FireflyIII\Http\Controllers\ReportController::categoryReportOptions
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testOptionsCategory(): void
{
@ -293,8 +288,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::options
* @covers \FireflyIII\Http\Controllers\ReportController::tagReportOptions
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testOptionsTag(): void
{
@ -312,7 +306,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexAccountOK(): void
@ -339,7 +333,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexAuditOK(): void
@ -365,7 +359,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexBudgetError(): void
@ -394,7 +388,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexBudgetOK(): void
@ -423,7 +417,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexCategoryError(): void
@ -452,7 +446,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexCategoryOK(): void
@ -480,7 +474,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexDefaultOK(): void
@ -506,7 +500,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexDefaultStartEnd(): void
@ -532,7 +526,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexTagError(): void
@ -560,7 +554,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexTagOK(): void
@ -589,7 +583,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::postIndex
* @covers \FireflyIII\Http\Controllers\ReportController
* @covers \FireflyIII\Http\Requests\ReportFormRequest
*/
public function testPostIndexZeroAccounts(): void
@ -615,7 +609,7 @@ class ReportControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\ReportController::tagReport
* @covers \FireflyIII\Http\Controllers\ReportController
*/
public function testTagReport(): void
{

View File

@ -100,7 +100,6 @@ class CreateControllerTest extends TestCase
$journalRepos->shouldReceive('firstNull')->once()->andReturn(new TransactionJournal);
$repository->shouldReceive('store')->andReturn(new Rule);
//$repository->shouldReceive('find')->withArgs([0])->andReturn(new Rule)->once();
$this->session(['rules.create.uri' => 'http://localhost']);
$data = [

View File

@ -53,8 +53,8 @@ class RuleGroupControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::create
* @covers \FireflyIII\Http\Controllers\RuleGroupController::__construct
* @covers \FireflyIII\Http\Controllers\RuleGroupController
* @covers \FireflyIII\Http\Controllers\RuleGroupController
*/
public function testCreate(): void
{
@ -69,7 +69,7 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::delete
* @covers \FireflyIII\Http\Controllers\RuleGroupController
*/
public function testDelete(): void
{
@ -86,7 +86,7 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::destroy
* @covers \FireflyIII\Http\Controllers\RuleGroupController
*/
public function testDestroy(): void
{
@ -105,7 +105,7 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::down
* @covers \FireflyIII\Http\Controllers\RuleGroupController
*/
public function testDown(): void
{
@ -122,7 +122,7 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::edit
* @covers \FireflyIII\Http\Controllers\RuleGroupController
*/
public function testEdit(): void
{
@ -143,7 +143,7 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::execute
* @covers \FireflyIII\Http\Controllers\RuleGroupController
*/
public function testExecute(): void
{
@ -169,8 +169,8 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::selectTransactions
* @covers \FireflyIII\Http\Controllers\RuleGroupController::__construct
* @covers \FireflyIII\Http\Controllers\RuleGroupController
* @covers \FireflyIII\Http\Controllers\RuleGroupController
*/
public function testSelectTransactions(): void
{
@ -187,7 +187,7 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::store
* @covers \FireflyIII\Http\Controllers\RuleGroupController
* @covers \FireflyIII\Http\Requests\RuleGroupFormRequest
*/
public function testStore(): void
@ -212,7 +212,7 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::up
* @covers \FireflyIII\Http\Controllers\RuleGroupController
*/
public function testUp(): void
{
@ -229,7 +229,7 @@ class RuleGroupControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\RuleGroupController::update
* @covers \FireflyIII\Http\Controllers\RuleGroupController
* @covers \FireflyIII\Http\Requests\RuleGroupFormRequest
*/
public function testUpdate(): void

View File

@ -47,8 +47,8 @@ class SearchControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\SearchController::index
* @covers \FireflyIII\Http\Controllers\SearchController::__construct
* @covers \FireflyIII\Http\Controllers\SearchController
* @covers \FireflyIII\Http\Controllers\SearchController
*/
public function testIndex(): void
{
@ -62,8 +62,8 @@ class SearchControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\SearchController::search
* @covers \FireflyIII\Http\Controllers\SearchController::__construct
* @covers \FireflyIII\Http\Controllers\SearchController
* @covers \FireflyIII\Http\Controllers\SearchController
*/
public function testSearch(): void
{

View File

@ -53,7 +53,7 @@ class TagControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\TagController::create
* @covers \FireflyIII\Http\Controllers\TagController
*/
public function testCreate(): void
{
@ -69,7 +69,7 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::delete
* @covers \FireflyIII\Http\Controllers\TagController
*/
public function testDelete(): void
{
@ -85,7 +85,7 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::destroy
* @covers \FireflyIII\Http\Controllers\TagController
*/
public function testDestroy(): void
{
@ -102,7 +102,7 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::edit
* @covers \FireflyIII\Http\Controllers\TagController
*/
public function testEdit(): void
{
@ -118,8 +118,8 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::index
* @covers \FireflyIII\Http\Controllers\TagController::__construct
* @covers \FireflyIII\Http\Controllers\TagController
* @covers \FireflyIII\Http\Controllers\TagController
*/
public function testIndex(): void
{
@ -140,8 +140,8 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::show
* @covers \FireflyIII\Http\Controllers\TagController::getPeriodOverview
* @covers \FireflyIII\Http\Controllers\TagController
* @covers \FireflyIII\Http\Controllers\TagController
*/
public function testShow(): void
{
@ -180,7 +180,7 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::show
* @covers \FireflyIII\Http\Controllers\TagController
*/
public function testShowAll(): void
{
@ -216,7 +216,7 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::show
* @covers \FireflyIII\Http\Controllers\TagController
*/
public function testShowDate(): void
{
@ -255,7 +255,7 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::store
* @covers \FireflyIII\Http\Controllers\TagController
* @covers \FireflyIII\Http\Requests\TagFormRequest
*/
public function testStore(): void
@ -281,7 +281,7 @@ class TagControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\TagController::update
* @covers \FireflyIII\Http\Controllers\TagController
* @covers \FireflyIII\Http\Requests\TagFormRequest
*/
public function testUpdate(): void

View File

@ -76,7 +76,7 @@ class BulkControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\BulkController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\BulkController
*/
public function testEditMultiple(): void
{
@ -137,7 +137,7 @@ class BulkControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\BulkController::update
* @covers \FireflyIII\Http\Controllers\Transaction\BulkController
* @covers \FireflyIII\Http\Requests\BulkEditJournalRequest
*/
public function testUpdate(): void

View File

@ -55,8 +55,8 @@ class ConvertControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::index
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testIndexDepositTransfer(): void
{
@ -94,7 +94,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::index
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testIndexDepositWithdrawal(): void
{
@ -128,7 +128,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::index
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testIndexSameType(): void
{
@ -154,7 +154,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::index
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testIndexSplit(): void
{
@ -183,7 +183,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::index
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testIndexTransferDeposit(): void
{
@ -210,7 +210,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::index
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testIndexTransferWithdrawal(): void
{
@ -241,7 +241,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::index
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testIndexWithdrawalDeposit(): void
{
@ -273,7 +273,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::index
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testIndexWithdrawalTransfer(): void
{
@ -308,9 +308,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexDepositTransfer(): void
{
@ -331,9 +329,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexDepositWithdrawal(): void
{
@ -356,9 +352,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexDepositWithdrawalEmptyName(): void
{
@ -377,9 +371,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexErrored(): void
{
@ -415,9 +407,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexSameType(): void
{
@ -438,9 +428,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexSplit(): void
{
@ -466,9 +454,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexTransferDeposit(): void
{
@ -500,9 +486,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexWithdrawalDeposit(): void
{
@ -520,9 +504,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexWithdrawalDepositEmptyName(): void
{
@ -540,9 +522,7 @@ class ConvertControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::postIndex
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getSourceAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController::getDestinationAccount
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
*/
public function testPostIndexWithdrawalTransfer(): void
{

View File

@ -46,8 +46,8 @@ class LinkControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController::delete
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
*/
public function testDelete(): void
{
@ -61,7 +61,7 @@ class LinkControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController::destroy
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
*/
public function testDestroy(): void
{
@ -82,7 +82,7 @@ class LinkControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController::store
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
* @covers \FireflyIII\Http\Requests\JournalLinkRequest
*/
public function testStore(): void
@ -108,7 +108,7 @@ class LinkControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController::store
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
* @covers \FireflyIII\Http\Requests\JournalLinkRequest
*/
public function testStoreAlreadyLinked(): void
@ -133,7 +133,7 @@ class LinkControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController::store
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
* @covers \FireflyIII\Http\Requests\JournalLinkRequest
*/
public function testStoreInvalid(): void
@ -155,7 +155,7 @@ class LinkControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController::store
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
* @covers \FireflyIII\Http\Requests\JournalLinkRequest
*/
public function testStoreSame(): void
@ -182,7 +182,7 @@ class LinkControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController::switchLink
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
*/
public function testSwitchLink(): void
{

View File

@ -51,8 +51,8 @@ class MassControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Transaction\MassController::delete
* @covers \FireflyIII\Http\Controllers\Transaction\MassController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\MassController
* @covers \FireflyIII\Http\Controllers\Transaction\MassController
*/
public function testDelete(): void
{
@ -72,7 +72,7 @@ class MassControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\MassController::destroy
* @covers \FireflyIII\Http\Controllers\Transaction\MassController
*/
public function testDestroy(): void
{
@ -98,7 +98,7 @@ class MassControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\MassController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\MassController
*/
public function testEdit(): void
{
@ -135,7 +135,7 @@ class MassControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\MassController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\MassController
*/
public function testEditMultiple(): void
{
@ -178,7 +178,7 @@ class MassControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Transaction\MassController::update
* @covers \FireflyIII\Http\Controllers\Transaction\MassController
*/
public function testUpdate(): void
{

View File

@ -65,7 +65,7 @@ class SingleControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::cloneTransaction
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testCloneTransaction(): void
{
@ -96,8 +96,8 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::create
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testCreate(): void
{
@ -122,8 +122,8 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::create
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testCreateDepositWithSource(): void
{
@ -147,8 +147,8 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::create
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testCreateWithSource(): void
{
@ -172,7 +172,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::delete
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testDelete(): void
{
@ -193,7 +193,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::destroy
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testDestroy(): void
{
@ -218,8 +218,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::isSplitJournal
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEdit(): void
{
@ -262,7 +261,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEditCashDeposit(): void
{
@ -309,7 +308,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEditCashWithdrawal(): void
{
@ -356,7 +355,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEditReconcile(): void
{
@ -382,7 +381,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEditRedirect(): void
{
@ -412,7 +411,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEditRedirectOpening(): void
{
@ -432,7 +431,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEditTransferWithForeignAmount(): void
{
@ -480,8 +479,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::isSplitJournal
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEditWithForeign(): void
{
@ -523,7 +521,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
*/
public function testEditWithForeignAmount(): void
{
@ -571,7 +569,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::store
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Requests\JournalFormRequest
*/
public function testStoreError(): void
@ -607,7 +605,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::store
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Requests\JournalFormRequest
*/
public function testStoreSuccess(): void
@ -662,7 +660,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::store
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Requests\JournalFormRequest
*/
public function testStoreSuccessDeposit(): void
@ -717,7 +715,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::store
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Requests\JournalFormRequest
*/
public function testStoreSuccessTransfer(): void
@ -773,7 +771,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::store
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Requests\JournalFormRequest
*/
public function testStoreSuccessTransferForeign(): void
@ -833,7 +831,7 @@ class SingleControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController::update
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
* @covers \FireflyIII\Http\Requests\JournalFormRequest
*/
public function testUpdate(): void

View File

@ -58,11 +58,7 @@ class SplitControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::arrayFromJournal
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::updateWithPrevious
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::getTransactionDataFromJournal
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
*/
public function testEdit(): void
{
@ -107,11 +103,7 @@ class SplitControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::arrayFromJournal
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::updateWithPrevious
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::getTransactionDataFromJournal
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
*/
public function testEditOldInput(): void
{
@ -206,7 +198,7 @@ class SplitControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
*/
public function testEditOpeningBalance(): void
{
@ -224,11 +216,7 @@ class SplitControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::edit
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::__construct
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::arrayFromJournal
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::updateWithPrevious
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::getTransactionDataFromJournal
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
*/
public function testEditSingle(): void
{
@ -269,7 +257,7 @@ class SplitControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::update
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
*/
public function testUpdate(): void
@ -324,8 +312,7 @@ class SplitControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::update
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::isOpeningBalance
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
*/
public function testUpdateOpeningBalance(): void
@ -367,7 +354,7 @@ class SplitControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::update
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
*/
public function testUpdateTransfer(): void
@ -423,7 +410,7 @@ class SplitControllerTest extends TestCase
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::update
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
*/
public function testUpdateWithdrawal(): void

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
{

Some files were not shown because too many files have changed in this diff Show More