mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 01:24:06 -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);
|
|
}
|
|
}
|