. */ declare(strict_types=1); namespace App\Tests\API\Endpoints; class AssemblyBOMEntriesEndpointTest extends CrudEndpointTestCase { protected function getBasePath(): string { return '/api/assembly_bom_entries'; } public function testGetCollection(): void { $this->_testGetCollection(); } public function testGetBomFromAssembly(): void { $response = self::createAuthenticatedClient()->request('GET', '/api/assemblies/1/bom'); self::assertResponseIsSuccessful(); } }