adrema/tests/Feature/Form/FormTestCase.php

20 lines
303 B
PHP
Raw Normal View History

2024-02-19 01:07:54 +01:00
<?php
namespace Tests\Feature\Form;
use Illuminate\Support\Facades\Storage;
2024-02-19 01:07:54 +01:00
use Tests\TestCase;
2024-02-20 02:02:42 +01:00
use Tests\Lib\CreatesFormFields;
2024-02-19 01:07:54 +01:00
class FormTestCase extends TestCase
{
2024-02-20 02:02:42 +01:00
use CreatesFormFields;
public function setUp(): void
{
parent::setUp();
Storage::fake('temp');
}
2024-02-19 01:07:54 +01:00
}