. */ declare(strict_types=1); namespace App\Tests\API\Endpoints; class CurrencyEndpointTest extends CrudEndpointTestCase { protected function getBasePath(): string { return '/api/currencies'; } public function testGetCollection(): void { $this->_testGetCollection(); self::assertJsonContains([ 'hydra:totalItems' => 0, ]); } public function testCreateItem(): void { $this->_testPostItem([ 'name' => 'Test API', 'iso_code' => 'USD', ]); } /*public function testUpdateItem(): void { $this->_testPatchItem(1, [ 'name' => 'Updated', ]); } public function testDeleteItem(): void { $this->_testDeleteItem(5); }*/ }