mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-09 12:57:41 -08:00
15 lines
343 B
PHP
15 lines
343 B
PHP
<?php
|
|||
|
|||
namespace Tests\Feature\Importing\Api;
|
|||
|
|||
use Illuminate\Testing\TestResponse;
|
|||
use Tests\TestCase;
|
|||
|
|||
abstract class ImportDataTestCase extends TestCase
|
|||
{
|
|||
protected function importFileResponse(array $parameters = []): TestResponse
|
|||
{
|
|||
return $this->postJson(route('api.imports.importFile', $parameters), $parameters);
|
|||
}
|
|||
}
|