. */ declare(strict_types=1); namespace Tests; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; use Tests\Traits\CollectsValues; /** * Class TestCase */ abstract class TestCase extends BaseTestCase { use CreatesApplication, CollectsValues; protected const MAX_ITERATIONS = 2; /** * @return array */ 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'], ]; } }