2015-07-02 09:44:56 +02:00
|
|
|
<?php
|
2017-08-11 05:36:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TestCase.php
|
2020-07-30 20:48:07 +02:00
|
|
|
* Copyright (c) 2020 james@firefly-iii.org
|
2017-08-11 05:36:05 +02:00
|
|
|
*
|
2019-10-02 06:45:03 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2017-10-21 08:40:00 +02:00
|
|
|
*
|
2019-10-02 06:45:03 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-10-21 08:40:00 +02:00
|
|
|
*
|
2019-10-02 06:45:03 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2017-10-21 08:40:00 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-02 06:45:03 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2017-10-21 08:40:00 +02:00
|
|
|
*
|
2019-10-02 06:45:03 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-08-11 05:36:05 +02:00
|
|
|
*/
|
2017-08-18 21:08:51 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-02-05 15:42:00 +01:00
|
|
|
namespace Tests;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
2020-07-31 06:53:48 +02:00
|
|
|
use Tests\Traits\CollectsValues;
|
2019-04-16 16:20:46 +02:00
|
|
|
|
2016-10-09 07:58:27 +02:00
|
|
|
/**
|
|
|
|
* Class TestCase
|
|
|
|
*/
|
2017-02-05 15:42:00 +01:00
|
|
|
abstract class TestCase extends BaseTestCase
|
2015-07-02 09:44:56 +02:00
|
|
|
{
|
2022-12-29 19:43:43 +01:00
|
|
|
use CreatesApplication;
|
|
|
|
use CollectsValues;
|
2021-03-19 06:12:28 +01:00
|
|
|
|
2021-03-14 04:55:48 +01:00
|
|
|
protected const MAX_ITERATIONS = 2;
|
2020-11-07 14:05:53 +01:00
|
|
|
|
2017-02-12 11:25:17 +01:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-05-11 19:58:10 +02:00
|
|
|
public function dateRangeProvider(): array
|
2017-02-12 11:25:17 +01:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'one day' => ['1D'],
|
|
|
|
'one week' => ['1W'],
|
|
|
|
'one month' => ['1M'],
|
|
|
|
'three months' => ['3M'],
|
|
|
|
'six months' => ['6M'],
|
|
|
|
'one year' => ['1Y'],
|
|
|
|
'custom range' => ['custom'],
|
|
|
|
];
|
|
|
|
}
|
2017-02-05 19:51:58 +01:00
|
|
|
}
|