mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Remove slash from method call.
This commit is contained in:
@@ -46,7 +46,7 @@ class BulkControllerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
|
||||
@@ -56,6 +56,9 @@ class BulkControllerTest extends TestCase
|
||||
*/
|
||||
public function testEdit(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// mock stuff:
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -84,6 +87,9 @@ class BulkControllerTest extends TestCase
|
||||
*/
|
||||
public function testEditMultiple(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// mock stuff:
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -123,6 +129,9 @@ class BulkControllerTest extends TestCase
|
||||
*/
|
||||
public function testEditNull(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// mock stuff:
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -152,6 +161,9 @@ class BulkControllerTest extends TestCase
|
||||
*/
|
||||
public function testUpdate(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$tags = ['a', 'b', 'c'];
|
||||
$collection = TransactionJournal::where('transaction_type_id', 1)->where('user_id', $this->user()->id)->take(4)->get();
|
||||
$allIds = $collection->pluck('id')->toArray();
|
||||
@@ -192,6 +204,9 @@ class BulkControllerTest extends TestCase
|
||||
*/
|
||||
public function testUpdateNull(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$tags = ['a', 'b', 'c'];
|
||||
$collection = TransactionJournal::where('transaction_type_id', 1)->where('user_id', $this->user()->id)->take(4)->get();
|
||||
$allIds = $collection->pluck('id')->toArray();
|
||||
|
@@ -53,7 +53,7 @@ class ConvertControllerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
|
||||
@@ -62,6 +62,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testIndexDepositTransfer(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// mock stuff:
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
@@ -96,6 +99,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testIndexDepositWithdrawal(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// mock stuff:
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
@@ -126,6 +132,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testIndexSameType(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// mock stuff:
|
||||
|
||||
// find deposit:
|
||||
@@ -148,6 +157,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testIndexSplit(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// mock stuff:
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
@@ -179,6 +191,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testIndexTransferDeposit(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// mock stuff:
|
||||
|
||||
// find transfer:
|
||||
@@ -203,6 +218,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testIndexTransferWithdrawal(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// find transfer:
|
||||
$transfer = $this->getRandomTransfer();
|
||||
// mock stuff:
|
||||
@@ -231,6 +249,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testIndexWithdrawalDeposit(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
|
||||
// find withdrawal:
|
||||
$withdrawal = $this->getRandomWithdrawal();
|
||||
@@ -260,6 +281,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testIndexWithdrawalTransfer(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
// find withdrawal:
|
||||
$withdrawal = $this->getRandomWithdrawal();
|
||||
// mock stuff:
|
||||
@@ -292,6 +316,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testPostIndexDepositTransfer(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -327,6 +354,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testPostIndexDepositWithdrawal(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -361,6 +391,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testPostIndexDepositWithdrawalEmptyName(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -396,6 +429,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testPostIndexErrored(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -432,6 +468,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testPostIndexSameType(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -458,6 +497,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testPostIndexSplit(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -481,7 +523,10 @@ class ConvertControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
|
||||
*/
|
||||
public function testPostIndexTransferDeposit(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -518,6 +563,9 @@ class ConvertControllerTest extends TestCase
|
||||
*/
|
||||
public function testPostIndexWithdrawalDeposit(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -551,7 +599,9 @@ class ConvertControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
|
||||
*/
|
||||
public function testPostIndexWithdrawalDepositEmptyName(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
@@ -584,7 +634,9 @@ class ConvertControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\ConvertController
|
||||
*/
|
||||
public function testPostIndexWithdrawalTransfer(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
Log::info(sprintf('Now in test %s', __METHOD__));
|
||||
// mock stuff
|
||||
$repository = $this->mock(JournalRepositoryInterface::class);
|
||||
|
@@ -43,7 +43,7 @@ class LinkControllerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
|
||||
@@ -52,7 +52,9 @@ class LinkControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
|
||||
*/
|
||||
public function testDelete(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$linkRepos = $this->mock(LinkTypeRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
@@ -70,7 +72,9 @@ class LinkControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
|
||||
*/
|
||||
public function testDestroy(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$repository = $this->mock(LinkTypeRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
@@ -94,7 +98,9 @@ class LinkControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalLinkRequest
|
||||
*/
|
||||
public function testStore(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$repository = $this->mock(LinkTypeRepositoryInterface::class);
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
@@ -122,7 +128,9 @@ class LinkControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalLinkRequest
|
||||
*/
|
||||
public function testStoreAlreadyLinked(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$repository = $this->mock(LinkTypeRepositoryInterface::class);
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
@@ -149,7 +157,9 @@ class LinkControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalLinkRequest
|
||||
*/
|
||||
public function testStoreInvalid(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$data = [
|
||||
'link_other' => 0,
|
||||
'link_type' => '1_inward',
|
||||
@@ -174,7 +184,9 @@ class LinkControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalLinkRequest
|
||||
*/
|
||||
public function testStoreSame(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$repository = $this->mock(LinkTypeRepositoryInterface::class);
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
@@ -202,7 +214,9 @@ class LinkControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\LinkController
|
||||
*/
|
||||
public function testSwitchLink(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$repository = $this->mock(LinkTypeRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
|
@@ -51,7 +51,7 @@ class MassControllerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
|
||||
@@ -61,6 +61,9 @@ class MassControllerTest extends TestCase
|
||||
*/
|
||||
public function testDelete(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||
$userRepos = $this->mock(UserRepositoryInterface::class);
|
||||
$userRepos->shouldReceive('hasRole')->withArgs([Mockery::any(), 'owner'])->atLeast()->once()->andReturn(true);
|
||||
@@ -84,6 +87,9 @@ class MassControllerTest extends TestCase
|
||||
*/
|
||||
public function testDestroy(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
|
||||
$deposits = TransactionJournal::where('transaction_type_id', 2)->where('user_id', $this->user()->id)->take(2)->get();
|
||||
$depositIds = $deposits->pluck('id')->toArray();
|
||||
@@ -251,6 +257,9 @@ class MassControllerTest extends TestCase
|
||||
*/
|
||||
public function testUpdate(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$deposit = TransactionJournal::where('transaction_type_id', 2)->where('user_id', $this->user()->id)
|
||||
->whereNull('deleted_at')
|
||||
->first();
|
||||
|
@@ -65,7 +65,7 @@ class SingleControllerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
|
||||
@@ -181,6 +181,9 @@ class SingleControllerTest extends TestCase
|
||||
*/
|
||||
public function testCreateWithSource(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -206,7 +209,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testDelete(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -229,7 +234,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testDestroy(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -256,7 +263,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEdit(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -303,7 +312,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEditCashDeposit(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -352,7 +363,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEditCashWithdrawal(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -401,7 +414,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEditReconcile(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -429,7 +444,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEditRedirect(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -461,7 +478,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEditRedirectOpening(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -483,7 +502,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEditTransferWithForeignAmount(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -533,7 +554,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEditWithForeign(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -577,7 +600,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SingleController
|
||||
*/
|
||||
public function testEditWithForeignAmount(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -628,7 +653,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalFormRequest
|
||||
*/
|
||||
public function testStoreDepositInvalidNative(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -669,7 +696,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalFormRequest
|
||||
*/
|
||||
public function testStoreError(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -707,7 +736,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalFormRequest
|
||||
*/
|
||||
public function testStoreSuccess(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -765,7 +796,9 @@ class SingleControllerTest extends TestCase
|
||||
*/
|
||||
public function testStoreSuccessDeposit(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -821,7 +854,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalFormRequest
|
||||
*/
|
||||
public function testStoreSuccessTransfer(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -880,7 +915,9 @@ class SingleControllerTest extends TestCase
|
||||
*/
|
||||
public function testStoreSuccessTransferForeign(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -942,7 +979,9 @@ class SingleControllerTest extends TestCase
|
||||
*/
|
||||
public function testStoreTransferInvalidSource(): void
|
||||
{
|
||||
$this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
$piggyRepos = $this->mock(PiggyBankRepositoryInterface::class);
|
||||
@@ -977,7 +1016,9 @@ class SingleControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\JournalFormRequest
|
||||
*/
|
||||
public function testStoreWithdrawalInvalidNative(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepos = $this->mock(BudgetRepositoryInterface::class);
|
||||
|
@@ -54,7 +54,7 @@ class SplitControllerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
|
||||
@@ -210,7 +210,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
|
||||
*/
|
||||
public function testEditOpeningBalance(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -232,7 +234,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
|
||||
*/
|
||||
public function testUpdate(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -290,7 +294,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
|
||||
*/
|
||||
public function testUpdateOpeningBalance(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -334,7 +340,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
|
||||
*/
|
||||
public function testUpdateTransfer(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -392,7 +400,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
|
||||
*/
|
||||
public function testUpdateWithdrawal(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
|
Reference in New Issue
Block a user