firefly-iii/tests/integration/TestCase.php

55 lines
1.5 KiB
PHP
Raw Normal View History

2015-07-02 02:44:56 -05:00
<?php
2017-08-10 22:36:05 -05:00
/**
* TestCase.php
2020-07-30 13:48:07 -05:00
* Copyright (c) 2020 james@firefly-iii.org
2017-08-10 22:36:05 -05:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2017-10-21 01:40:00 -05: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 01:40:00 -05:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 01:40:00 -05:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2017-10-21 01:40:00 -05: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-10 22:36:05 -05:00
*/
2017-08-18 14:08:51 -05:00
declare(strict_types=1);
namespace Tests\integration;
2017-02-05 08:42:00 -06:00
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Tests\integration\Traits\CollectsValues;
2019-04-16 09:20:46 -05:00
2016-10-09 00:58:27 -05:00
/**
* Class TestCase
*/
2017-02-05 08:42:00 -06:00
abstract class TestCase extends BaseTestCase
2015-07-02 02:44:56 -05:00
{
2022-12-29 12:43:43 -06:00
use CreatesApplication;
use CollectsValues;
2021-03-19 00:12:28 -05:00
2021-03-13 21:55:48 -06:00
protected const MAX_ITERATIONS = 2;
2020-11-07 07:05:53 -06:00
/**
* @return array
*/
2018-05-11 12:58:10 -05:00
public function dateRangeProvider(): array
{
return [
'one day' => ['1D'],
'one week' => ['1W'],
'one month' => ['1M'],
'three months' => ['3M'],
'six months' => ['6M'],
'one year' => ['1Y'],
'custom range' => ['custom'],
];
}
}