This commit is contained in:
Saeed Vaziry
2025-06-04 19:04:02 +02:00
parent 35894003f5
commit f8f8d57fe2
31 changed files with 165 additions and 171 deletions

View File

@ -10,6 +10,7 @@
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Http;
use Inertia\Testing\AssertableInertia;
use PHPUnit\Framework\Attributes\DataProvider;
use Tests\TestCase;
class StorageProvidersTest extends TestCase
@ -18,9 +19,8 @@ class StorageProvidersTest extends TestCase
/**
* @param array<string, mixed> $input
*
* @dataProvider createData
*/
#[DataProvider('createData')]
public function test_create(array $input): void
{
$this->actingAs($this->user);
@ -104,8 +104,6 @@ public function test_cannot_delete_provider(): void
}
/**
* @TODO: complete FTP tests
*
* @return array<int, mixed>
*/
public static function createData(): array