. */ declare(strict_types=1); namespace App\Tests\API\Endpoints; use App\Tests\API\Endpoints\CrudEndpointTestCase; class PartLotsEndpointTest extends CrudEndpointTestCase { protected function getBasePath(): string { return '/api/part_lots'; } public function testGetCollection(): void { $this->_testGetCollection(); self::assertJsonContains([ 'hydra:totalItems' => 2, ]); } public function testGetItem(): void { $this->_testGetItem(1); $this->_testGetItem(2); } public function testCreateItem(): void { $this->_testPostItem([ 'name' => 'API test', 'part' => '/api/parts/1', 'storage_location' => '/api/storage_locations/1', 'amount' => 100, ]); } public function testUpdateItem(): void { $this->_testPatchItem(1, [ 'amount' => 220 ]); } public function testDeleteItem(): void { $this->_testDeleteItem(1); } }