. */ declare(strict_types=1); namespace App\Tests\API\Endpoints; class UsersEndpointTest extends CrudEndpointTestCase { protected function getBasePath(): string { return '/api/users'; } public function testGetCollection(): void { $this->_testGetCollection(); } public function testGetItem(): void { $this->_testGetItem(1); } }